如何通过MSBuild扩展包将web.config设置为“debug = false”?

时间:2010-12-22 17:45:01

标签: msbuild web-config msbuildextensionpack

我有一个WCF服务应用程序,web.config设置为调试模式(debug = true):

    <compilation debug="true">
        <assemblies>
            <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
            <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        </assemblies>
    </compilation>

我想通过MSBuild Extension Pack(版本3.5.8.0)将其设置为“debug = false”,以便发布的版本始终自动处于非调试模式。

显然我需要使用XmlFile class,但它没有做任何事情 我的构建文件如下所示:

  <Target Name="Test">
    <MSBuild.ExtensionPack.Xml.XmlFile TaskAction="UpdateAttribute" File="$(MSBuildProjectDirectory)\$(BuildDir)\ServiceClient\web.config" XPath="/configuration/system.web/compilation[@name='debug']" InnerText="false"/>
  </Target>

当我运行构建脚本时,我只看到这个:

Test:  
XmlFile: C:\MyProject\Build\ServiceClient\web.config 
Update Attribute: /configuration/system.web/compilation[@name='debug']. Value:

没有错误,没有警告......没有 我可以看到MSBuild找到了web.config并用它做了一些事情,因为Explorer中的“Date Modified”现在设置为了,在我运行脚本之前并非如此。但文件中没有明显的变化。我使用diff工具来比较MSBuild之前和之后的文件版本,它们完全相同。

我还尝试设置KeyValue而不是InnerText,但这也无济于事。

知道我做错了吗?

1 个答案:

答案 0 :(得分:4)

试试这个:

  <Target Name="Test">
    <MSBuild.ExtensionPack.Xml.XmlFile TaskAction="UpdateAttribute" File="web.config" XPath="/configuration/system.web/compilation" Key="debug" Value="false" />
  </Target>

我正在使用扩展包版本3.5.8.0