当前位置:   article > 正文

ASP.NET-配置Dubug和Release生成不同的Web.config

.net core webapi 根据debug或release切换不同的配置

配置 Dubug 和 Release 生成不同的 Web.config

Web.config Transformation Syntax for Web Application Project Deployment | Microsoft Docs

  1. 创建 Web.config、 Web.Debug.config、 Web.Release.config
  2. Web.config 写通用的配置
  3. Web.Debug.config 和 Web.Release.config 分别写开发和生成环境的配置(使用 XML-Document-Transform)

eg:

  • Web.config:
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <appSettings>
  4. <add key="ImagesFilePath" value="images_file/" />
  5. <add key="AttachmentPath" value="D:\Code\Web\" />
  6. <add key="SiteURL" value="http://localhost:3448/" />
  7. </appSettings>
  8. <system.webServer>
  9. <staticContent>
  10. <mimeMap fileExtension=".json" mimeType="application/json" />
  11. </staticContent>
  12. </system.webServer>
  13. </configuration>
  • Web.Debug.config:
    无改动
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  3. </configuration>
  • Web.Release.config:

    修改 AttachmentPath 和 SiteURL

    删除 system.webServer

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  3. <appSettings>
  4. <add key="AttachmentPath" value="D:\" xdt:Transform="Replace" xdt:Locator="Match(key)" />
  5. <add key="SiteURL" value="http://192.168.10.11:8080/" xdt:Transform="Replace" xdt:Locator="Match(key)" />
  6. </appSettings>
  7. <system.webServer xdt:Transform="Remove">
  8. </system.webServer>
  9. </configuration>

转载于:https://www.cnblogs.com/jffun-blog/p/9642226.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/190197
推荐阅读
相关标签
  

闽ICP备14008679号