我有两个必须配置的.config文件。一个是web.config
,一个是app.config
,这两个文件都来自我们的代码在其中运行的第三方供应商。所以我们需要对它进行调整,以便它看到我们的代码。
我的计划是使用xslt获取我们的.config文件并将其合并到第三方文件中。
我已经看到了一些关于如何使用msbuild进行此类操作的示例,但由于我们在现场进行此操作,因此我们将不得不使用安装程序。任何帮助将不胜感激。
实施例: 我们开始时:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<gcServer enabled="true"/>
</runtime>
</configuration>
自定义部分
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="productName" type="company.productName, company, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" />
</configSections>
<productName defaultProvider="Provider1">
<providers>
<clear />
<add name="Provider1" type="Company.Product.Authentication.Provider1, Company.Product, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" hostName="localhost:5555" />
<add name="Provider2" type="Company.Product.Authentication.Provider2, Company.Product, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" hostName="demo.example.com" />
</providers>
</productName>
</configuration>
结束于:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="productName" type="company.productName, company, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" />
</configSections>
<productName defaultProvider="Provider1">
<providers>
<clear />
<add name="Provider1" type="Company.Product.Authentication.Provider1, Company.Product, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" hostName="localhost:5555" />
<add name="Provider2" type="Company.Product.Authentication.Provider2, Company.Product, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" hostName="demo.example.com" />
</providers>
</productName>
<runtime>
<gcServer enabled="true"/>
</runtime>
</configuration>
答案 0 :(得分:1)
此样式表:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:apply-templates select="document('test.xml')/*">
<xsl:with-param name="pContext" select="*"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template match="*[*]">
<xsl:param name="pContext" select="/.."/>
<xsl:variable name="vCurrent" select="."/>
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:copy-of select="$pContext/@*"/>
<xsl:for-each select="*">
<xsl:apply-templates select=".">
<xsl:with-param name="pContext"
select="$pContext/*[name()=name(current())]"/>
</xsl:apply-templates>
</xsl:for-each>
<xsl:for-each select="$pContext/*">
<xsl:apply-templates
select="(.)[not($vCurrent/*[name()=name(current())])]"/>
</xsl:for-each>
</xsl:copy>
</xsl:template>
<xsl:template match="*[not(*)]">
<xsl:param name="pContext" select="/.."/>
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:copy-of select="$pContext/@*"/>
<xsl:apply-templates
select="node()[not($pContext)]|$pContext/node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
使用此输入:
<configuration>
<runtime>
<gcServer enabled="true"/>
</runtime>
</configuration>
这是test.xml
:
<configuration>
<configSections>
<section name="productName" type="company.productName, company, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" />
</configSections>
<productName defaultProvider="Provider1">
<providers>
<clear />
<add name="Provider1" type="Company.Product.Authentication.Provider1, Company.Product, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" hostName="localhost:5555" />
<add name="Provider2" type="Company.Product.Authentication.Provider2, Company.Product, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" hostName="demo.example.com" />
</providers>
</productName>
</configuration>
输出:
<configuration>
<configSections>
<section name="productName" type="company.productName, company, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c"></section>
</configSections>
<productName defaultProvider="Provider1">
<providers>
<clear></clear>
<add name="Provider1" type="Company.Product.Authentication.Provider1, Company.Product, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" hostName="localhost:5555"></add>
<add name="Provider2" type="Company.Product.Authentication.Provider2, Company.Product, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d9072a6c5128d57c" hostName="demo.example.com"></add>
</providers>
</productName>
<runtime>
<gcServer enabled="true"></gcServer>
</runtime>
</configuration>
注意:三条规则。文档根规则:将遍历树更改为需要更新的源,并将输入源保持为$pContext
。具有元素子元素规则的元素:使用属性复制自身,使用$pContext
的属性更新属性(这由处理器完成,因为creating attributes rules),将模板应用于具有新$pContext
的子元素(如果孩子的名字与$pContext
同名,请将模板应用于$pContext
与孩子名字不匹配的孩子。没有元素子元素的元素规则:使用$pContext
属性更新的属性复制自身,如果$pContext
中有一个节点复制它,从而替换元素内容(如果{{1}中有空元素,则甚至剥离) 1}})。