0

一直在尝试将转换应用于我在 Visual Studio 2010 中的一个配置文件

目标文件的开头是这样的:

forms.config

    <configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:x="http://www.sitecore.net/xmlconfig/">
        <sitecore> 
           <formsDataProvider type="Sitecore.Forms.Data.DataProviders.WFMDataProvider,Sitecore.Forms.Core">
             <param desc="connection string">connection string goes here</param>
           </formsDataProvider>

...

转换文件如下:

forms.Staging.config

<?xml version="1.0" encoding="utf-8" ?>
<!-- For more information on using transformations 
 see the web.config examples at http://go.microsoft.com/fwlink/?LinkId=214134. -->
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:x="http://www.sitecore.net/xmlconfig/" xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <sitecore>
    <formsDataProvider type="Sitecore.Forms.Data.DataProviders.WFMDataProvider,Sitecore.Forms.Core">
      <param desc="connection string" xdt:Transform="Replace" xdt:Locator="Match(desc)">connection string for staging goes here</param>
    </formsDataProvider>
  </sitecore>
</configuration>

当暂存构建在 Octopus 上运行时,日志中会显示以下内容:

DEBUG  [XML Transformation] The expected namespace http://schemas.microsoft.com/XML-Document-Transform was not found in the transform file. 

试图删除其他 xmlns 属性无济于事。

所述命名空间清楚地作为配置节点中的属性在转换文件上。我们还有许多其他此类文件,并且可以很好地应用转换。所有转换文件的构建操作都设置为内容。

不确定我们是否可以让 Octopus 将此类消息记录为错误而不是调试。

有没有其他人有类似的问题?

提前致谢。

4

1 回答 1

0

看起来它可能正在尝试将您的forms.config应用为转换文件而不是目标。

您在部署步骤的Additional Transforms中指定了什么?您是否不小心包含了 forms.config本身?

于 2013-09-24T10:10:28.793 回答