Reputation: 6783
I am having a website developed in Visual Studio 2012. The web.config is currently containing following files in its transformation: - web.Debug.config - web.Release.config
I have recently added a new build configuration (named as "Staging") in my project. How can I create a "web.Staging.config" transformation file?
Upvotes: 87
Views: 69377
Reputation: 25935
You need to first install the Configure Transform extension [Extensions -> Manage Extensions -> Online section] to see the option when right-clicking your web.{environment}.config
files.
Upvotes: 6
Reputation: 1628
IN VS 2012:
Your new transform file will be automatically created.
Upvotes: 53
Reputation: 28376
There are two ways for the web.config transform files to be generated within VS:
Upvotes: 136