.net 框架的 SP/修补程序会重置 machine.config 吗?
如果我对 machine.config 进行了更改,这些更改是否会在 .net 框架更新后被清除?
If I've made changes to my machine.config, will those changes be wiped-out upon an update to the .net framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须记住,每个 .NET Framework 版本都位于其自己的文件夹中,每个版本都有自己的
machine.config
。如果应用程序请求更高版本的 .NET,并且该文件夹具有
machine.config
文件,则先前版本的machine.config
将被忽略。顺便说一句,我不认为这是一件坏事,您无法知道当前的配置文件是否适用于该框架的所有未来版本。当您使用较新版本测试应用程序时,您可以调整配置文件,然后将其发布为正确的 .NET 版本(或者根本不升级到较新的 .NET FW 版本,由您选择)。
You have to keep in mind that each .NET Framework version is in it's own folder, each with their own
machine.config
.If an application requests a higher version of .NET and that folder has a
machine.config
file, yourmachine.config
from the previous version is ignored.I don't see this as a bad thing by the way, you have no way of knowing if your current config file will work with all future versions of the framework. As you test your app with the newer version, you can tweak the config file and then release it for the proper .NET version (or not upgrade to the newer .NET FW version at all, your choice).