MSBuild Task Configuration Property - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T01:19:42Z http://stackoverflow.com/feeds/question/721173 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/721173/msbuild-task-configuration-property 0 MSBuild Task Configuration Property crowleym 2009-04-06T12:18:07Z 2009-04-08T11:21:05Z <p>Three VS Solutions. First is configured to build as Release, and the other two set to build as Debug.</p> <p>When running a simple MSBuild script explicitly stating the configuration to build (Debug) the first project is still built as Release.</p> <p>Sample script:</p> <pre><code> &lt;Target Name="Build"&gt; &lt;ItemGroup&gt; &lt;ProjectToBuild Include="$(SolutionsPath)\Solution1.sln"/&gt; &lt;ProjectToBuild Include="$(SolutionsPath)\Core\Solution2.sln"/&gt; &lt;ProjectToBuild Include="$(SolutionsPath)\UI\Solution3.sln"/&gt; &lt;/ItemGroup&gt; &lt;MSBuild Projects="@(ProjectToBuild)" Targets="Rebuild" Properties="Configuration=Debug;Platform=Any CPU"/&gt; &lt;/Target&gt; </code></pre> <p>I have tried variations of the above such as:</p> <pre><code> &lt;Target Name="Build"&gt; &lt;ItemGroup&gt; &lt;ProjectToBuild Include="$(SolutionsPath)\Solution1.sln"&gt;&lt;Properties&gt;Configuration=Debug&lt;/Properties&gt;&lt;/ProjectToBuild&gt; &lt;ProjectToBuild Include="$(SolutionsPath)\Core\Solution2.sln"&gt;&lt;Properties&gt;Configuration=Debug&lt;/Properties&gt;&lt;/ProjectToBuild&gt; &lt;ProjectToBuild Include="$(SolutionsPath)\UI\Solution3.sln"&gt;&lt;Properties&gt;Configuration=Debug&lt;/Properties&gt;&lt;/ProjectToBuild&gt; &lt;/ItemGroup&gt; &lt;MSBuild Projects="@(ProjectToBuild)" Targets="Rebuild" Properties="Platform=Any CPU"/&gt; &lt;/Target&gt; </code></pre> <p>but always end up with the same result.</p> <p>I note there is a <a href="http://stackoverflow.com/questions/474403/msbuild-task-build-fails-because-one-solution-being-built-in-release-instead-of">similar question</a> but that is specific to TFS and Teambuild. I am talking pure MSBuild with a simple project file created from scratch.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/721173/msbuild-task-configuration-property/723678#723678 0 Answer by Brian for MSBuild Task Configuration Property Brian 2009-04-06T23:51:10Z 2009-04-06T23:51:10Z <p>Have you tried running with /v:diag?</p> <p>Also, aside: I think you want "AnyCPU" (no space).</p> http://stackoverflow.com/questions/721173/msbuild-task-configuration-property/729557#729557 2 Answer by crowleym for MSBuild Task Configuration Property crowleym 2009-04-08T11:21:05Z 2009-04-08T11:21:05Z <p>OK I have found the issue. Nothing related to MSBuild, but instead the solution being built. Posting to save someone else the heartache.</p> <p>For whatever reason the Debug configuration was configured within the solution like so:</p> <p><img src="http://www.freeimagehosting.net/uploads/cad0bdf1c0.jpg" alt="alt text" /></p> <p>So MSBuild was only doing what it was told too...</p>