我正在尝试使 web.config 转换按此处所述进行工作。我们已经在其他项目上使用过这种方法,它可以正常工作,但在这个新项目上却没有。
这是我尝试过的没有成功的测试
- 更改 wpp.targets 文件的名称以防我弄错项目名称。我知道我正在使用的当前一个工作,因为它是唯一一个导致 web.config 从 web.template.xml 重建这个转换工作。只有子模板不起作用。
- 尝试使用 xdt:Locator="Match(name)"
- 尝试了 .config 扩展名与 .xml,我们其他适用的项目使用 .xml
- 配置管理器设置为对我正在处理的项目使用“测试”配置。
- web.template.Test.xml 对我要替换的部分有 xdt:Transform="Replace"
- web.template.xml 有占位符
- 尝试按照下面链接的堆栈问题中的建议从 wpp.targets 中删除“CopyWebTemplateConfig”部分。我们的其他项目有这个,并且“PropertyGroup”部分被注释掉了,我已经尝试了这两种组合。
我已经多次阅读了上面的链接和这个相关的堆栈问题,但看不到问题是什么。
注意发布转换确实以某种方式工作。它会创建一个包含来自 web.template.Test.xml 的值的 web.template.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)