web.debug.config不起作用

时间:2017-09-14 08:38:07

标签: c# web-config web.config-transform

我有一个webb应用程序,我想利用web.debug.config文件,以便在调试时使用测试数据库。这对我不起作用。我在web.debig.config中有这个..

<connectionStrings>
  <add name="connStr" 
    connectionString="Data Source=LocalSqlserverName;Initial Catalog=testdb;Persist Security Info=True;User ID=Myusername;Password=mypassword" 
    xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
</connectionStrings>

在我的web.config文件中,此连接字符串指向另一个数据库服务器。但是当我调试时,我可以看到web.config文件中的连接字符串被用来代替web.debug.config中的连接字符串。我在这里做错了什么?

1 个答案:

答案 0 :(得分:2)

正如@esiprogrammer所说,它通常只会在Visual Studio的Publish上进行转换。

但是,您可以在构建时转换Web.config。将其添加到您的*.csproj文件中:

<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\WebApplications\Microsoft.WebApplication.targets" />
<Target Name="BeforeBuild">
    <TransformXml 
        Source="Web.Base.config" 
        Transform="Web.$(Configuration).config" 
        Destination="Web.config" />
</Target>

将原始配置保留在Web.Base.config中。它足以启用转换,适用于任何XML配置文件。

来源:

https://stackoverflow.com/a/35561167/3850405