ASP.NET MVC 在“发布”上应用 web.config 转换
我正在使用 VS2010,并且有一个使用“发布”命令部署的 Web 应用程序。
我在 Web.Release.Config 文件中定义了几个转换,以更改连接字符串以及需要在“实时”服务器中更改的其他设置。
我看到的问题是,当我执行“发布”命令时,它不会应用 web.release.config 文件中定义的转换。
关于如何实现这一目标有什么想法吗?
谢谢
I'm using VS2010 and I have a Web application that I deploy using the "Publish" command.
I have defined a couple of transformations in the Web.Release.Config file to change the connection string and other settings that need to change in the "live" server.
The problem I'm seeing is that when I execute the "Publish" command it doesn't apply the transformations defined in the web.release.config file.
Any idea on how to achieve this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Visual Studio 上,菜单顶部应该有一个选择框。您需要选择构建的类型(发布、调试等)。
如下所示:
请注意将其设置为“发布”。
On visual studio, there should be a select box top on the menu. You need to select the type of your build (Release, Debug, etc.).
Something like below :
Be careful that it is set to Release.