how to add files in web.config transformation process?

拟墨画扇 提交于 2019-12-17 08:52:45

问题


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?


回答1:


There are two ways for the web.config transform files to be generated within VS:

  1. If you have a web application project, Right-click on web.config and choose Add Config Transform. This will add any config transforms that are missing from your project based on build configurations (i.e. if you have Production and Staging build configs, both will get a transform added).
    • This method is not supported for Website projects as they do not support multiple build configurations.
  2. In either web project type, right click on a publish profile (.pubxml) and choose Add Config Transform. This will add a new config transform for that profile only.
    • This requires VS2012 Update 2 or the Azure SDK 2.0 for VS2010 (I think).
    • In a web site project, the new transform file will not be nested under web.config as VS doesn't support that behavior. Just look for it in the root folder.



回答2:


IN VS 2012:

  1. Go to Build->Configuration Manager
  2. Click on the Active solutions configuration and select "New".
  3. Enter the name of your new configuration and click Save.
  4. Right click on your Web.config file and select Add Config Transform.

Your new transform file will be automatically created.



来源:https://stackoverflow.com/questions/15542421/how-to-add-files-in-web-config-transformation-process

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!