Web.config转换为更改值

时间:2016-02-18 13:08:27

标签: web-config

我正在开展一个项目,我需要在其中包含web.config transofrm,以根据生产环境或测试环境中的值来更改值。

让我们举例说,我希望值 testItem 在我的测试环境中,值 prodItem 在我的生产环境中。

到目前为止我就是这样做的。

的web.config:

<appSettings>
    <add key ="ELeg" value ="testItem"/>
</appSettings>

Web.Prod.config:

  <configuration>
    <appSettings>
      <add key ="prodItem"/>
    </appSettings>
  </configuration>

正如您所看到的,代码类似,但唯一的区别是我更改了web.Prod.config中的值。

如何使用web.config转换正确更改生产环境中的值?

0 个答案:

没有答案