在 web.config 中设置 debug=false 作为构建的一部分
是否可以指示 aspnet_compiler 在 web.config 中设置 debug=false ?
我的目的是将其自动化作为 nant 构建过程的一部分。 我愿意接受 xml 解析以外的建议
Is it possible to instruct the aspnet_compiler to set debug=false in the web.config?
My intention is to automate this as part of the nant build process. I am open to suggestions other than xml parsing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您是否考虑过使用
?NAnt 主页
XML Poke 文档
Have you thought about using
<xmlpoke>
?NAnt Home Page
XML Poke Documentation
我建议为每个环境(在我们的例子中是生产、测试、暂存)使用完全不同的配置文件。 根据构建,您只需使用所需的配置,不会造成混乱,也不会大惊小怪。 Hanselmen 有关于如何在 Visual Studio 中执行此操作的示例,如果您阅读了第一条评论Phil Hack 已将其与 NAnt 配合使用。
此外,如果您使用的是 VS 2010,您现在可以使用 web.config 转换
I would suggest using entirely different config files for each environment(prod, test, staging in our case). Depending on the build you would just use the required config, no mess, less fuss. Hanselmen has example on how to do this in Visual Studio and if you read the first comment Phil Hack has got it working with NAnt.
In Addition, if you are using VS 2010 you can now use web.config transforms
我解决这个问题的方法是为每个部署环境都有单独的配置文件:
在“构建脚本”上,我复制我正在构建的类型的配置文件。 例如,在登台时,我会将 /configs/staging/*.config 复制到网站的根目录中。 然后,我的脚本将调用 aspnet_compiler 来编译应用程序。
The way I tackle this is I have seperate configuration files for each deployment environment:
Upon the "build script", I copy the config files for the type I am building. For example, on Staging I would copy the /configs/staging/*.config into the root of the website. Then, my script would call aspnet_compiler to compile the application.
我一直在使用这个工具作为我的构建链的一部分。
它允许基于构建设置在单个 xml 文件中进行条件配置设置。
http://xmlpreprocess.sourceforge.net/
I've been using this tool as part of my build chain.
It allows conditional configuration settings within a single xml file based on build settings.
http://xmlpreprocess.sourceforge.net/
使用 Web 部署项目,您可以在构建后交换 web.config 的不同部分。
Using web deployment projects you can swap out different sections of your web.config after your build.