4

我正在研究 web.config 转换文件概念。我有三个网络配置。一种是暂存、生产、部署。我对这三个有不同的连接信息。

网络配置:

  <connectionStrings>
    <add name="MyGallery"
   connectionString="Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=DevelopmentStorageDb;Data Source=BALA\SQLEXPRESS" />
  </connectionStrings>

Web.Config.Production:

<add
    name="MyGallery"
    connectionString="Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=SharePoint_Config;Data Source=BALA\SQLEXPRESS"
    xdt:Transform="Replace" xdt:Locator="Match(name)"
    />

现在我构建了它工作正常的代码。我已经创建了包。当我在生产模式下运行代码时,新的连接字符串没有占用。

我该如何解决这个问题。我需要额外的努力才能把它移到某个地方吗

4

2 回答 2

15

要使用的命名是 Web.Production.Config 而不是 Web.Config.Production...

此外,这里使用的更优化转换是 xdt:Transform="SetAttributes(connectionString)" 这样 XDT 引擎只会修改 connectionString 属性并保持添加节点不变......

于 2009-08-12T18:31:42.147 回答
0

您能否检查以确保软件包是在正确的配置中构建的(生产)?你能检查一下哪个 web.config 进入包吗?

我还没有真正尝试过这个。

于 2009-07-13T22:45:42.093 回答