-6ren"> -只是想知道在 app.config 中设置 rollForward 属性时究竟做了什么,如下所示: 我一直没能在网上找到很多。谢谢! 最佳答案 以下链接清楚地解释了 roll-6ren">
gpt4 book ai didi

c# - 在 app.config 中使用

转载 作者:行者123 更新时间:2023-11-30 22:10:12 26 4
gpt4 key购买 nike

只是想知道在 app.config 中设置 rollForward 属性时究竟做了什么,如下所示:

<startup>
<process>
<rollForward enabled="true" />
</process>
</startup>

我一直没能在网上找到很多。谢谢!

最佳答案

以下链接清楚地解释了 rollForward 的用法。

如果您想强制您的应用只使用机器上可用的最新框架,您可以使用这个相对未记录的 rollForward 设置:

<configuration>
...
<startup>
<process>
<rollForward enabled="true" />
</process>
</startup>
...
</configuration>

如果您无法控制正在构建的 .NET 框架和应用程序的版本(例如在构建服务器上),但希望在最新的框架上运行,这当然是一件好事。这也是一种测试大型应用程序在最新的 CLR 上运行时继续工作而无需构建大量解决方案的低影响方式。但是您应该完全开始以 .NET 4.0 为目标,以利用新的框架功能。

  1. Google Books
  2. Using the new .NET CLR without recompiling

关于c# - 在 app.config 中使用 <rollForward enabled ="true"/>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21008765/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com