web.release.config.install.xdtファイルを含む NuGet パッケージを作成しています。ただし、ファイル内のすべての変換は NuGet によって処理されます。
web.release.config.install.xdtファイルの内容は次のとおりです。
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<!-- I only want this xdt:Transform to be handled by NuGet -->
<solr xdt:Transform="Insert">
<!-- the below xdt:Transform attributes are also processed by NuGet -->
<server id="location" url="http://192.168.1.100:8983/solr/geo" xdt:Transform="SetAttributes" xdt:Locator="Match(id)" />
</solr>
</configuration>
ネストされた変換をエスケープして web.release.config ファイルに保持するための適切な方法に関する提案はありますか?