我使用Visual Studio 2015创建了一个“类库(包)”类型的项目。
我应该如何将Web / app配置转换文件添加到NuGet包中?
答案 0 :(得分:0)
在您的项目中添加一个文件: App.config.install.xdt
在.nuspec文件中添加:
<files>
<file src="App.config.install.xdt" target="content\App.config.install.xdt" />
</files>
https://msdn.microsoft.com/en-us/library/dd465326.aspx
以下示例显示了更改连接字符串并替换customErrors元素的转换文件的内容
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<connectionStrings>
<add name="MyDB"
connectionString="value for the deployed Web.config file"
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
</connectionStrings>
<system.web>
<customErrors defaultRedirect="GenericError.htm"
mode="RemoteOnly" xdt:Transform="Replace">
<error statusCode="500" redirect="InternalError.htm"/>
</customErrors>
</system.web>
</configuration>
如果要添加一个名为app.config的文件,请注意“.transform”文件。