Web.config transformation option is greyed out

Viewed 18397

In VS2010, when I right click on my web.config file the "Add Config Transforms" option is greyed out.

Any idea how I can get that back?

10 Answers

If you want to really see the "Add Config Transforms" enabled , then add a new configuration using the configurationManager. Or delete any of the configuration file web.release.config or web.Debug.config. This is Visual Studio restriction to have a single config file for each environment.

Related