Managing project configurations in VS 2010

Posted by Toby on Stack Overflow See other posts from Stack Overflow or by Toby
Published on 2010-06-11T14:14:34Z Indexed on 2010/06/11 14:23 UTC
Read the original article Hit count: 217

I'm working on a solution with multiple projects (class libraries, interop, web application, etc) in VS2010.

For the web application, I would like to take advantage of the config transformations in VS2010, so at one point I added configurations for each of our environments: Development, Test, Production, and so on.

Some time later, after having rearranged the project layout, I noticed that some projects show all of the configurations in the properties page dropdown. Some projects (added since I did that setup) show only the standard Debug & Release configurations. Once I realized that this was going to make build configurations worse, not better, I decided to remove all of the extra configurations I had added.

I've removed all of the various configuration options from the solution, but the projects that had the alternate configuration options still have them, and I can't figure out how to get rid of them in individual projects.

Also, now that I see that not all projects have to have the same configurations, I would like to create my environmental configurations at the solution level, and in the web application project (for the config transforms), but leave all of the class libraries with the basic Debug/Release configurations. I've been unable to find any tool in the UI, or any information on the 'Net, concerning how to set up such a thing.

So, in short, what's the best/easiest way to manage configurations at the project level in VS2010?

© Stack Overflow or respective owner

Related posts about configuration

Related posts about visual-studio-2010