Reputation: 2364
I'm wondering if it's possible to define a logging output in a msbuild project file? I'm aware of the command line switch /l:FileLogger,Microsoft.Build.Engine;logfile=MyLog.log My build process is started from a separate build.proj that includes other VS project files.
I would like to get rid of the command line option and place it in the build file.
Thanks in advance
Chris
Upvotes: 1
Views: 229
Reputation: 9938
You have two options, neither are great:
Upvotes: 1