ここで説明されているように、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」セクションがコメントアウトされており、両方の組み合わせを試しました。
上記のリンクとこの関連するスタックの質問を何度も読みましたが、問題が何であるかがわかりません。
注公開トランスフォームは、ある意味で機能します。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)