gpt4 book ai didi

asp.net - 在构建 Web 应用程序后使用 Visual Studio 2010 web.config 转换

转载 作者:行者123 更新时间:2023-12-01 02:34:43 25 4
gpt4 key购买 nike

我在 Visual Studio 2010 中使用 web.config 转换。

我通过右键单击 web.config 文件并选择了名为 Add Config Transforms 的选项来添加转换。通过这个,我在我的解决方案中添加了几个配置文件。通过 VS2010 发布我的项目后,我的 web.config 更新为选定的配置文件(如 web.dev.config)。

我的问题是:

我可以在构建时(或构建后)使用选定的配置文件(如 web.dev.config)更新我的 web.config 文件。

谢谢,
玛希

最佳答案

我同意 Pablo 的评论。你不应该覆盖 web.config。

如果需要,您可以在编译时转换所有文件。

这是如何做到的。编辑项目文件 (.csproj) 并添加以下代码。确保路径正确。

<Target Name="AfterBuild">
<TransformXml Source="$(SolutionDir)WCFServices\Web.config"
Transform="$(SolutionDir)WCFServices\Web.Release.config"
Destination="$(OutDir)WebRelease.config"
StackTrace="true" />
</Target>

关于asp.net - 在构建 Web 应用程序后使用 Visual Studio 2010 web.config 转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10739595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com