当我“开始调试”时是否应用了 web.config 转换?在视觉工作室中?
我向 Web 应用程序项目添加了调试/发布 web.config 转换文件。
虽然它在我构建部署包时工作,但当我只是“开始调试”(绿色播放按钮)时它不会应用。这是预期的行为还是应该应用转换?在开发过程中在不同配置之间切换的最佳实践是什么?
如何快速测试 web.config 转换是否有效以及生成的 web.config 文件是什么?
Possible Duplicate:
How can I use Web.debug.config in the built-in visual studio debugger server?
I added a Debug/Release web.config transformation file to a web application project.
While its working when I build a deployment package it is not applied when I simply "start debugging" (green play button). Is this the expected behaviour or should the transformations be applied? What are best practices to switch between different configurations in development?
How can I raplidly test if a web.config transformation works and whats the resulting web.config file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不;仅当您构建部署包时 - 并且它们根本不应用于项目中的文件 - 因此它们不会出现在项目、调试或其他情况下 - 无需执行某些自定义步骤来获取转换后的
web.config< /code> 搬家了。
No; only when you build the deployment package - and they are not applied to the files in your project at all - so they are not present from the project, debugging or otherwise - without some custom step to get the transformed
web.config
moved.