从安装程序中更新第三方's .config转换's

本文关键字:config 转换 第三方 安装 程序 更新 | 更新日期: 2023-09-27 17:49:19

我有2个必须配置的.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>

从安装程序中更新第三方's .config转换's

这个样式表:

<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的属性更新属性(这是由处理器完成的,因为创建属性规则),将模板应用于具有新$pContext(具有相同名称的旧$pContext的子元素)的元素子元素,将模板应用于不匹配任何子名称的$pContext的子元素。没有子元素的元素规则:复制带有$pContext属性更新的属性的元素本身,如果$pContext中有一个节点,复制它,从而替换元素内容(或者甚至剥离,如果你在$pContext中有一个空元素)。