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

I have a multi project solution in Visual Studio 2008. I just added a new Configuration called Release-VersionIncrement to the solution, specifying "use release" configuration as baseline. All project files were updated with that configuration. However, when I am trying to compile a specific project using this configuration, I get the following error:

Error 5 The OutputPath property is not set for this project. Please check to make sure that you have specified a valid Configuration/Platform combination. Configuration='Release-VersionIncrement' Platform='AnyCPU' C:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets 539 9 DataConversion

What's happening here? The project compiles fine in Release or Debug configuration.

share|improve this question

14 Answers

up vote 24 down vote accepted

Usually this happens when the OutputPath property of the project file is blank. Project files are just MSBuild files. To edit in Visual Studio: Right click on the proejct, pick "Unload project" then right click on the unloaded project and select "Edit ...".

Look for the Release-Versionincrement property group. It should look something like

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release-VersionIncrement|AnyCPU' ">
  <OutputPath>bin\Release-VersionIncrement\</OutputPath>
  <DefineConstants>TRACE</DefineConstants>
  <Optimize>true</Optimize>
  <DebugType>pdbonly</DebugType>
  <PlatformTarget>AnyCPU</PlatformTarget>
  <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
  <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
  <ErrorReport>prompt</ErrorReport>
</PropertyGroup>

The important one there it the OutputPath, does it exist for your project file? If not add it and try again.

share|improve this answer
Sayed, Yes, I checked that, and the project file for the project that is having issues has the OutputPath property. – laconicdev Jul 9 '09 at 12:41
13  
If the output path is correct and you're still receiving this error, you might have references to assemblies or other projects that don't exist any longer. Clean out the old references. That was my experience. – John K Jan 13 '10 at 21:37
3  
I just stumbled onto this error, and had to modify the project file directly. Even though the project properties page said "Any CPU" the property was set to blank initially and I picked up a Platform=BPC setting from my environment variables. After I fixed that and set/reset the properties page from Any CPU to x86 and back, it still wouldn't build, claiming the platform was now 'x86' (?!?). Sure enough, I followed the steps here and found it was now set to x86, so I manually edited it and now everybody's happy again. Thanks guys! – DaveN59 Sep 21 '10 at 19:30
2  
My project file had the expected PropertyGroup, with a non-empty OutputPath, and I was getting this error. The only thing I noticed was that the PropertyGroup for this particular configuration was the first element under the root node in the file, and the Condition attribute didn't have a leading and trailing space, unlike all of the other configuration Conditions. At this point, I moved this element below some of the other configurations (not sure why it would matter, was just trying stuff), and added the whitespace in the condition. After this it worked. Not sure which made the difference. – seth flowers Dec 11 '12 at 14:57
@sethflowers solution worked for me. It would build fine locally, but TeamCity would not build my new Configuration until I made the changes in Seth's comment – Noah Heldman Mar 12 at 17:50

I have also seen this error when our build agent was configured to run platform "Any CPU" (with spaces as displayed in Visual Studio) rather than "AnyCPU" (one word as specified in the project file).

share|improve this answer

I had the same problem when I used MSBuild first. My solution is: use the OutputPath property definitely. Like this:

msbuild XXX.csproj /p:OutputPath=bin\Debug.
share|improve this answer
Great! Worked well. – Tony Jul 10 '12 at 15:02

Like "Richard Dingwall" hinted, the problem is related to VS using the display version of "Any CPU" instead of the MSBuild version which actually reads "AnyCPU"

Go into Build/New Build Definition or Edit Build Definition -> Process -> Configurations to build, open the configuration selection dialog and in "Platform" instead of selecting "Any CPU", manually add "AnyCPU"

share|improve this answer

I had this same error message. It was caused by having a reference to a project that was unloaded and not required by the linker (otherwise it would have failed at compile time). Removing the offending reference solved the issue.

share|improve this answer

I strugged with this for a while and then also unloaded, built, and then reloaded the offending project in the solution, and then MSBuild functioned correctly.

share|improve this answer
Wow, this totally solved my problem. Thanks! – Chad Johnson Sep 13 '12 at 1:04

The issue had to do with my project configuration. Here is the scenario:

Solution A references:

Project X references Project Y
Project Y

Solution B (the one I am trying to build) references:

Project X Project Z

My solution was to create a configuration with the same name for Solution A, rebuild it, and then rebuild Solution B. This fixed the problem.

share|improve this answer
1  
I was encountering the same error and this work-around was the only thing that worked for me. Basically, I had a solution platform configuration "Win32" which builds a silverlight project with the platform configuration "Any CPU" and also a webapplication project with the platform configuration "x86" that hosts the silverlight project. I had to add a new project platform configuration to the silverlight project, "x86" (and keep the old one as the default configuration) in order for msbuild to work as expected. – Rami A. Mar 5 '11 at 5:55

In my case (VS2010) I removed string in the "OutputPath" box that is on "Build" tab and left it blank. Then I rebuilt the solution. Build was successful and VS has inserted current directory "./" into the "OutputPath". I replaced current directory "./" with my path ("bin\x64\Release\" -- suffice to say that this is exact folder path that was VS was complaining in the first place) and rebuild was successful again.

share|improve this answer

In my case the OutputPath was set property in the project files. But unloading, reloading and then rebuilding fixed it.

share|improve this answer

I've removed Platform environment variable (was BNB or smth like that). The problem is gone.

share|improve this answer
Unfortunately even after removing the Platform environment variable it reqires a full reboot! – 79E09796 2 days ago

In our case we were running a build script on our HP developer boxes. HP have some environment variables they've set up for their own purposes and one of them is PLATFORM (used, apparently, for "HP Easy Setup").

Deleting the PLATFORM environment variable worked.

You could also future-proof your build script by specifying the platform, i.e.
msbuild /p:Platform=AnyCPU.

share|improve this answer

In my case the new "PropertyGroup" XML block was generated at the bottom of document. I've just replaced it after other "PropertyGroup" tags and this resolved the problem.

share|improve this answer

I was adding the x64 platform to my solution today, when I ran into this issue.

In my case, the error read:

Built $/ProjectDirectory/ProjectName.csproj for default targets. c:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets (484): The OutputPath property is not set for project ProjectName.csproj'. Please check to make sure that you have specified a valid combination of Configuration and Platform for this project. Configuration='Debug' Platform='x64'. You may be seeing this message because you are trying to build a project without a solution file, and have specified a non-default Configuration or Platform that doesn't exist for this project.

I knew the OutputPath should be fine, since this was an existing, working VS solution. So I moved to the next hint--"a valid combination of Configuration and Platform".

Aha! Visual Studio is trying to build Configuration='Debug', Platform='x64'. Looking at my project file, I realized that x64 was not listed as one of the possible platforms. In other words, I had the below entries (shortened):

  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
      <PlatformTarget>x86</PlatformTarget>
      <OutputPath>bin\x86\Debug\</OutputPath>  
      . . .  
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
      <PlatformTarget>x86</PlatformTarget>
      <OutputPath>bin\x86\Release\</OutputPath>    
      . . .
  </PropertyGroup>

Easy fix then: just add x64 entries!

I copy/paste'd the x86 entries, and changed them to use x64. Notice I also modified the paths so these don't overwrite x86 builds:

  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
      <PlatformTarget>x64</PlatformTarget>
      <OutputPath>bin\x64\Debug\</OutputPath>    
      . . .
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
      <PlatformTarget>x64</PlatformTarget>
      <OutputPath>bin\x64\Release\</OutputPath>    
      . . .
  </PropertyGroup>
share|improve this answer

I created a new project in a new solution which references to existing projects. This error occurs when I add an existing project (say project 1) and try to build without adding other projects that project 1 references to.

Just make sure all the relating projects are added to the new solution and the error disappears.

share|improve this answer

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.