Logging with VS2010
Just an FYI post.
If anyone is updating from a project with VS2008 to VS2010 and using a *.htm as ouput, it no longer works. VS2010 seems to only allow *.log output files now.
I had to remove my *.htm output and add the following under the Options tab under "Additional DEVENV, MSBUILD, or VCBUILD options:" in the Make VS 2010 action:
/logger:FileLogger,Microsoft.Build.Engine;logfile=% PATH_COMMON_SOURCE%\BuildLog.log
and then I just set my %PATH_COMMON_SOURCE% to the location of my VS project output folder.
Let me know if you have any questions.
-jp
|