web.config转换

时间:2012-01-09 09:47:46

标签: c# asp.net web-config transformation web-config-transform

我正在努力使网络配置转换正常运行,但没有成功。

我的网络应用中有一个包含以下内容的文件夹:

<?xml version="1.0"?>
<configuration>
  <system.web>
    <authorization>
      <allow roles="ADMINISTRATORS"/>
      <allow roles="OPERATOR"/>
      <deny users="?"/>
    </authorization>
  </system.web>
</configuration>

我创建了转换文件,并在Release转换版本中移动了部分。不幸的是,这不起作用。 如果配置设置为Debug,我不希望在我的Web配置中包含该部分,否则我需要。

有关如何使其发挥作用的任何建议吗?

1 个答案:

答案 0 :(得分:2)

感谢您的链接,我之前已经看过它们,但从未停止阅读所有内容。

解决方案很简单(设置如下:

<?xml version="1.0" encoding="utf-8" ?>
<!-- For more information on using transformations 
     see the web.config examples at http://go.microsoft.com/fwlink/?LinkId=214134. -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">

  <system.web>
    <authorization>
      <allow roles="ADMINISTRATORS" xdt:Transform="Insert"/>
      <allow roles="OPERATOR" xdt:Transform="Insert"/>
      <deny users="?" xdt:Transform="Insert"/>
    </authorization>
  </system.web>

</configuration>