如何停止 Visual Studio 检查 web.config?
我想更改我的 web.config 文件,但我不想签出它(因为我真的不想意外签入它)。
我该怎么做?我在文件属性中取消选中“只读”,但这没有帮助。有什么想法吗?
I want to make changes to my web.config file but I dont want to check it out (as I really dont want to accidently check it in).
How can I do this? I unchecked 'read-only' in the file properties but this didn't help. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您开始编辑文件时,您必须禁用检出文件。这可以通过 Visual Studio 配置对话框的源代码控制部分来完成。
You have to disable checking out files when you start editing them. This can be done via the source control part of the Visual Studio Configuration dialog.
我倾向于使用 T4 模板,您可以在其中生成本地网页.config 基于一些规则,因此每个开发人员都有自己的本地自定义 web.config - 或者所有开发人员都使用与您发布的不同的相同 web.config。
I tend to use the T4 template in which you can generate the local web.config based on some rules, so each developer has its own local customized web.config - or all devs use the same web.config that is different than the one you ship.