Mar 16, 2012 at 1:08 PM
Edited Mar 16, 2012 at 1:09 PM
|
I need to build a few projects with DevEnv in my TFS2010 build. I have added a new MSBuild activity to my build process that calls my msbuild script which uses the DevEnv task. As part of the parameters to the msbuild script, I pass in the name of the solution
to build (which comes from the list of projects added to the build definition) and all other required parameters. When this runs through the build process all is successful, but my build summary contains multiple entries.
Here is a sample of what my build summary looks like:
Summary
Release | x86
0 errors, 0 warnings
MyProject.proj - 0 errors, 4 warnings, View Log Files
(shows warnings)
MyProject - 0 errors, 4 warnings
MyProject - 0 errors, 4 warnings
MyProject - 0 errors, 4 warnings
MyProject - 0 errors, 4 warnings
5 projects/soluctions compiled
(lists all 5 projects again)
Release | x86
0 errors, 16 warnings
MyProject.proj - 0 errors, 4 warnings, View Log Files
(shows warnings)
MyProject - 0 errors, 4 warnings
MyProject - 0 errors, 4 warnings
MyProject - 0 errors, 4 warnings
MyProject - 0 errors, 4 warnings
5 projects/soluctions compiled
(lists all 5 projects again)
Is there anyway to correct this behavior so that there is only 1 Release|x86 section and only 1 project is listed?
serverBuildProjectItem.TFSProjectProperties.compilerOptions.Platform
|