1

当我的 NuGet 包安装时,我在弄清楚如何转换 web.config 文件时遇到问题。它正在做一些转换,但不是全部。

这是我在安装 NuGet 包时需要修改的未修改的 web.config 文件:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="webpages:Version" value="3.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  </appSettings>
  <system.web>
    <authentication mode="None" />  ***** I want this removed *****
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
  </system.web>
  <system.webServer>
    <modules>
      <remove name="FormsAuthentication" />  ***** I want this removed *****
    </modules>
  </system.webServer>
</configuration>

这是我想要的结果:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="webpages:Version" value="3.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
    <add key="MvcMailer.BaseURL" value="" />
    <add key="SecurityGuardEmailFrom" value="info@email.net" />
    <add key="SecurityGuardEmailSubject" value="Your Password has been reset." />
    <add key="SecurityGuardEmailTemplatePath" value="~/MailerTemplates/ResetPassword.html" />
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
    <authentication mode="Forms">
      <forms loginUrl="~/SGAccount/Login" timeout="2880" />
    </authentication>
  </system.web>
  <system.webServer>
    <modules>
    </modules>
  </system.webServer>
</configuration>

这是在 MVC 应用程序中转换的 web.config 文件,这是不正确的:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="webpages:Version" value="3.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
    <add key="MvcMailer.BaseURL" value="" />
    <add key="SecurityGuardEmailFrom" value="info@email.net" />
    <add key="SecurityGuardEmailSubject" value="Your Password has been reset." />
    <add key="SecurityGuardEmailTemplatePath" value="~/MailerTemplates/ResetPassword.html" />
  </appSettings>
  <system.web>
    <authentication mode="None" />  ***** Not removed when it should be *****
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
    <authentication mode="Forms">
      <forms loginUrl="~/SGAccount/Login" timeout="2880" />
    </authentication>
  </system.web>
  <system.webServer>
    <modules>
      <remove name="FormsAuthentication" />  ***** Not removed when it should be *****
    </modules>
  </system.webServer>
</configuration>

这是我的 web.config.install.xdt 文件:

<?xml version="1.0" encoding="utf-8" ?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <system.web>
    <authentication mode="None" xdt:Transform="Remove" xdt:Locator="Match(mode)" />
    <authentication mode="Forms" xdt:Transform="Insert">
      <forms loginUrl="~/SGAccount/Login" timeout="2880" />
    </authentication>
  </system.web>
  <system.webServer>
    <modules>
      <remove name="FormsAuthentication" xdt:Transform="Remove" xdt:Locator="Match(name)" />
    </modules>
  </system.webServer>
</configuration>

我已经阅读了 Nuget.org 网站上关于如何使用 XDT 转换的所有文档,它甚至可以在这个测试网站上运行;https://webconfigtransformationtester.apphb.com/,但它不起作用。

我难住了。关于如何使这项工作的任何建议?

4

1 回答 1

1

下面是新的 web.config.install.xdt 看起来成功地处理了这项工作:

<?xml version="1.0" encoding="utf-8" ?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <appSettings>
    <add key="SecurityGuardEmailFrom" value="info@email.net" xdt:Transform="Insert" />
    <add key="SecurityGuardEmailSubject" value="Your Password has been reset." xdt:Transform="Insert" />
    <add key="SecurityGuardEmailTemplatePath" value="~/MailerTemplates/ResetPassword.html" xdt:Transform="Insert" />  
  </appSettings>
  <system.web>
    <authentication mode="Forms" xdt:Transform="SetAttributes" />
    <authentication mode="Forms">
      <forms loginUrl="~/SGAccount/Login" timeout="2880" xdt:Transform="Insert" />
    </authentication>
  </system.web>
  <system.webServer>
    <modules>
      <remove name="FormsAuthentication" xdt:Transform="Remove" />
    </modules>
  </system.webServer>
</configuration>

我没有尝试删除原始身份验证元素,而是更改了模式属性,然后插入了表单元素。一旦正常工作,其余的似乎都会自行解决。

于 2014-09-22T01:06:02.603 回答