Project not selected to build for this solution configuration.

When you upgrade your older solution files to latest version of visual studio 2010 or 2012 you may get compilation output as "Project not selected to build for this solution configuration", even though with the earlier version of visual studio these projects were building fine. 
In order to build required project you just have to modify the solution configuration. Steps below mention how to do it.
  1. Launch the Solution properties, by right clicking solution and select Properties.
  2. On solution properties dialog box, from configuration properties group select Configuration.
  3. For the projects which you are getting the error as above select the check box under Build column if not checked. 
  4. Save configuration by pressing OK.
Now your project being skipped should get built, while building the solution.

No comments:

Post a Comment

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...