我正在创建一个包含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 文件保留的正确方法的任何建议?