web.config转换从web.template.xml无法正常工作

时间:2012-08-01 16:43:58

标签: c# asp.net-mvc visual-studio-2010 visual-studio web-config

我正在尝试按照here所述的方式运行web.config转换。我们已经在其他项目中使用了这种方法,它可以正常运行,但不会在这个新项目上运行。

这是我试过没有成功的测试

  • 如果我的项目名称错误,请更改wpp.targets文件的名称。我知道我正在使用的当前工作,因为它是唯一一个导致从web.template.xml重建web.config的转换。只有子模板不起作用。
  • 尝试使用xdt:Locator =“Match(name)”
  • 尝试.config扩展名与.xml,我们的其他项目使用.xml
  • 配置管理器设置为我正在使用的项目使用“测试”配置。
  • web.template.Test.xml对我要替换的部分有xdt:Transform =“Replace”
  • web.template.xml具有占位符
  • 尝试从wpp.targets中删除“CopyWebTemplateConfig”部分,如下面链接的堆栈问题所示。我们的其他项目有这个和“PropertyGroup”部分注释掉了,我尝试了两种组合。

我已多次阅读上述链接和此相关堆栈question,但无法查看问题所在。

注意发布转换确实有效。它创建一个web.template.xml文件,其中包含来自web.template.Test.xml的值,但不会像wpp.targets指示的那样创建web.config.xml。所以这更像是让构建转换工作的问题。

任何人都知道缺少什么?

wpp.targets

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

  <!-- Make sure web.config will be there even for package/publish -->
  <Target Name="CopyWebTemplateConfig" BeforeTargets="Build">
    <Copy SourceFiles="web.template.xml"
          DestinationFiles="web.config"/>
  </Target>

  <PropertyGroup>
    <PrepareForRunDependsOn>
      $(PrepareForRunDependsOn);
      UpdateWebConfigBeforeRun;
    </PrepareForRunDependsOn>
  </PropertyGroup>

  <!-- This target will run right before you run your app in Visual Studio -->
  <Target Name="UpdateWebConfigBeforeRun">
    <Message Text="Configuration: $(Configuration): Web.template.$(Configuration).xml"/>
    <TransformXml Source="web.template.xml"
              Transform="web.template.$(Configuration).xml"
              Destination="web.config" />
  </Target>

  <!-- Exclude the config template files from the created package -->
  <Target Name="ExcludeCustomConfigTransformFiles" BeforeTargets="ExcludeFilesFromPackage">
    <ItemGroup>
      <ExcludeFromPackageFiles Include="web.template.xml;web.template.*.xml"/>
    </ItemGroup>
    <Message Text="ExcludeFromPackageFiles: @(ExcludeFromPackageFiles)" Importance="high"/>
  </Target>
</Project>

web.template.xml

<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=152368
  -->
<configuration>
  <configSections>           
    <sectionGroup name="TestSettings"></sectionGroup>
    ....
  </configSections>
    ....
  <TestSettings>
  </TestSettings>
   ....
</configuration>

web.template.Test.xml

<?xml version="1.0"?>
<!-- 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">
  <TestSettings xdt:Transform="Replace">
    ...
  </TestSettings>
</configuration>

MSBuild输出

Target "UpdateWebConfigBeforeRun: (TargetId:143)" in file "C:\...\Project.wpp.targets" from project "C:\...\Project.csproj" (target "PrepareForRun" depends on it):
Task "Message" (TaskId:93)
  Configuration: Test: Web.template.Test.xml (TaskId:93)
Done executing task "Message". (TaskId:93)
Task "TransformXml" (TaskId:94)
  Transforming Source File: Web.template.xml (TaskId:94)
    Applying Transform File: Web.template.Test.xml (TaskId:94)
    Executing Replace (transform line 5, 18) (TaskId:94)
      on /configuration/TestSettings (TaskId:94)
      Applying to 'TestSettings' element (source line 121, 4) (TaskId:94)
      Replaced 'TestSettings' element (TaskId:94)
    Done executing Replace (TaskId:94)
    Output File: web.config (TaskId:94)
  Transformation succeeded (TaskId:94)
Done executing task "TransformXml". (TaskId:94)
Done building target "UpdateWebConfigBeforeRun" in project "Project.csproj".: (TargetId:143)

5 个答案:

答案 0 :(得分:3)

我已经安装了StyleCop,而且正在为我进行覆盖。

所以我卸载了它,问题解决了。

有趣的是,我重新安装了StyleCop并且转换仍然有效!

同样在某些方面,我注意到我也应该删除CopyWebTemplateConfig目标部分。

答案 1 :(得分:2)

我已经解决了我的问题,但不确定原因是什么,所以不确定这是否会在其他情况下解决。

我查看了MSBuild诊断的输出,并注意到最后还有另一个部分将web.template复制到web.config。请注意,这是在UpdateWebConfigBeforeRun目标已经运行并将其从子模板转换文件更新到web.config之后。看起来这最后一步是用我想要的转换来覆盖web.config。

我不确定最后一组复制指令的来源,所以我搜索了我的PC上寻找其他wpp.target文件的所有文件。我在Slow Cheetah的扩展文件夹中找到了另一个,并看到一些顶部将一个属性“transformOnBuild”设置为false。

认为与SlowCheetah存在冲突,我将其卸载并且转换开始按预期工作。由于启用了SlowCheetah的其他解决方案,这仍然有点奇怪。一时兴起,我重新安装了SlowCheetah,转换继续按预期工作。

所以我的解决方案最终成为了SlowCheetah的重新安装。我仍然对这个问题的原因感到困惑,所以如果其他人发布了这个答案,我会给他们赏金。

答案 2 :(得分:0)

上周我遇到了类似的问题。 事实证明,无论何时将项目添加到VS 2010中的解决方案,都不会始终应用正确的项目配置。 因此,您认为您的配置处于活动状态,但另一个配置实际上在该项目上处于活动状态,因此您预期的转换将无法应用。

检查此问题的最后评论中的步骤:Custom solution configuration not showing up in Visual Studio 2010

答案 3 :(得分:0)

“我知道我正在使用的当前工作,因为它是唯一一个导致从web.template.xml重建web.config的转换工作。只有子模板不起作用。”

这是否意味着,转换是有效的,但单独的TestSettings部分不会被转换?

您可以与msbuild共享构建输出,并将详细程度设置为诊断/详细信息吗?

答案 4 :(得分:0)

我写了一篇关于这个主题的博客文章。我每天都在网络应用程序中使用它。我写博客文章是因为slowcheetah中的功能尚未准备就绪。 http://www.locktar.nl/general/use-config-transforms-when-debugging-your-web-application/