WCF web.config 在每次编译后都会被覆盖?
我有一个调用 WCF 服务的 Silverlight 应用程序。简单的httpBinding 东西。
- 每次我对 silverlight xaml 代码进行更改时,web.config 也会被刷新。
- 即使对 web.cofig 文件进行任何更改,它们也会被覆盖。
就好像其他进程正在写入这些文件一样。为什么会发生这种情况?如何确保每次编译后它不会被覆盖?
I have a Silverlight application calling a WCF service. SimplehttpBinding stuff.
- Every I make changes to silverlight xaml code, the web.config gets refrshed also.
- Even if make any changes to web.cofig file, they get overwritten too.
Its as if, some other process is writing these files. Why is that happening? How can I make sure that it does not get overwritten after every compile?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在不同的目录中有另一个 web.config,且属性
复制到输出目录
设置为始终复制
,请检查您的解决方案。在我意识到我已经设置了该属性之前,我遇到了类似的问题。
Check your solution if you have another web.config in a different directory with property
Copy to output directory
set toCopy Always
.I had a similar problem before I realized I had that property set.