I created my own registrar by expanding the Logger class, and I was able to connect this registrar to msbuild on the command line. I did it as follows:
msbuild Sample.proj /l:CustomLogger,MSBuildCustomLogger.dll
And it worked fine, but I would like to extend it to Visual Studio. Therefore, I was looking for a way to connect this user registrar when creating a solution / project inside Visual Studio. I looked at various resources for this, but so far I have not been able to find a way to extend the Visual Studio logging mechanism. Is there any way to implement this? I would appreciate any help / advice on this issue.
source
share