Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Three VS Solutions. First is configured to build as Release, and the other two set to build as Debug.

When running a simple MSBuild script explicitly stating the configuration to build (Debug) the first project is still built as Release.

Sample script:

    <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>

I have tried variations of the above such as:

    <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>

but always end up with the same result.

I note there is a similar question but that is specific to TFS and Teambuild. I am talking pure MSBuild with a simple project file created from scratch.

Any ideas?

share|improve this question

4 Answers

up vote 10 down vote accepted

OK I have found the issue. Nothing related to MSBuild, but instead the solution being built. Posting to save someone else the heartache.

For whatever reason the Debug configuration was configured within the solution like so:

alt text

So MSBuild was only doing what it was told too...

share|improve this answer

I was getting this same error. The solution was to explicitly specify the target platform with:

msbuild.exe /p:Platform="Any CPU"

This only started happening since I upgraded to windows 7, so I guess it is something to do with that.

share|improve this answer

Regarding the question of spelling of platform any cpu, it turns out there is an issue, already reported elsewhere here on so and microsoft. It affects msbuild in general and the entire issue of Platform documentation is omitted in my dotnet v3.5 msbuild /help. So perhaps this will help someone!

SO; "AnyCPU" vs "Any CPU" in TFS 2010

MS; http://connect.microsoft.com/VisualStudio/feedback/details/503935/msbuild-inconsistent-platform-for-any-cpu-between-solution-and-project MSBuild inconsistent platform for "Any CPU" between solution and project by dferg.dv Closed as Won't Fix
Type: Bug ID: 503935
Opened: 10/26/2009 1:29:12 PM Access Restriction: Public
0 Workaround(s) view 5User(s) can reproduce this bug

The msbuild Platform property has a different value for Any CPU depending upon whether you are building the solution or building a project. Solution use Platform="Any CPU" - space Project use Platform="AnyCPU" - no space

share|improve this answer
This has got to be one of the worst decisions I've ever seen by a Microsoft team. – Blake Niemyjski Feb 15 at 17:59

Have you tried running with /v:diag?

Also, aside: I think you want "AnyCPU" (no space).

share|improve this answer
FYI Any CPU is correct... : error MSB4126: The specified solution configuration "Debug|AnyCPU" is invalid. Please specify a valid solution configuration using the Configuration and Platform properties (e.g. MSBuild.exe Solution.sln /p:Configuration=Debug /p:Platform="Any CPU") – crowleym Apr 7 '09 at 8:42
Had the same thing...looking into the .csproj file the platforms there were named AnyCpu (no whitespace) so changing this in the buildscript solved the problem. – YoupTube Jun 16 '11 at 11:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.