MSBuild: a simple way to find out all properties and their values while building a csproj file
Sometimes you wonder about existence or value of some msbuild property. How to find out all properties names and their values?
A very simple way to do this — just build your project with verbosity “diagnostic” for current logger. Obviously it’s better to use fileLogger.
How to do this:
MSBuild.exe MyProj.csproj ^
/filelogger /fileLoggerParameters:Verbosity=diag
Then at the bottom of result log file (which name will be msbuild.log by default) you’ll find all properties with their values.