MSBuild Task Configuration Property - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T01:19:42Zhttp://stackoverflow.com/feeds/question/721173http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/721173/msbuild-task-configuration-property0MSBuild Task Configuration Property crowleym2009-04-06T12:18:07Z2009-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> <Target Name="Build">
<ItemGroup>
<ProjectToBuild Include="$(SolutionsPath)\Solution1.sln"/>
<ProjectToBuild Include="$(SolutionsPath)\Core\Solution2.sln"/>
<ProjectToBuild Include="$(SolutionsPath)\UI\Solution3.sln"/>
</ItemGroup>
<MSBuild Projects="@(ProjectToBuild)" Targets="Rebuild" Properties="Configuration=Debug;Platform=Any CPU"/>
</Target>
</code></pre>
<p>I have tried variations of the above such as:</p>
<pre><code> <Target Name="Build">
<ItemGroup>
<ProjectToBuild Include="$(SolutionsPath)\Solution1.sln"><Properties>Configuration=Debug</Properties></ProjectToBuild>
<ProjectToBuild Include="$(SolutionsPath)\Core\Solution2.sln"><Properties>Configuration=Debug</Properties></ProjectToBuild>
<ProjectToBuild Include="$(SolutionsPath)\UI\Solution3.sln"><Properties>Configuration=Debug</Properties></ProjectToBuild>
</ItemGroup>
<MSBuild Projects="@(ProjectToBuild)" Targets="Rebuild" Properties="Platform=Any CPU"/>
</Target>
</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#7236780Answer by Brian for MSBuild Task Configuration Property Brian2009-04-06T23:51:10Z2009-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#7295572Answer by crowleym for MSBuild Task Configuration Property crowleym2009-04-08T11:21:05Z2009-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>