vs2015 工程中 Web.Release.config和Web.Debug.config文件无效的处理办法

在.csproj文件中添加以下内容:

<Target Name="BeforeBuild">
<TransformXml Source="Web.config" Transform="Web.$(Configuration).config" Destination="Web.config" />
</Target>

原文地址:https://www.cnblogs.com/strugglepcx/p/6433432.html