.NET版本降级生成app.config。我需要它吗?

发布于 2024-08-04 06:07:15 字数 314 浏览 6 评论 0原文

最近不得不将一个项目从 .NET 3.5 降级到 .NET 2.0,因为结果发现目标盒子上没有 .NET 3.5。

当我这样做时(在 VS2008 中),它使用以下 XML 片段在每个项目中创建了一个 app.config 文件:

<startup><supportedRuntime version="v2.0.50727"/></startup>
  • 有必要吗?
  • 我是否需要将此 app.config(或生成的 XML 文件)与我的应用程序一起发送?

Recently had to downgrade a project from .NET 3.5 to .NET 2.0 because it turns out that the target boxes will not have .NET 3.5 on them.

When I did so (in VS2008), it created an app.config file in each project with this snippet of XML:

<startup><supportedRuntime version="v2.0.50727"/></startup>
  • Is this necessary?
  • Do I need to ship this app.config (or the resulting XML file) with my app?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心房的律动 2024-08-11 06:07:15

这是一件好事。如果没有它,您的应用程序也可以正常运行,因此它可能不是绝对必要的,但它为运行时提供了有关所需框架的目标版本的更明确的指示。如果不需要的话,放在里面也没什么坏处。

我会保留它。

It's a good thing to have in there. Your app may run fine without it, so it may not be absolutely necessary, but it gives the runtime more explicit instructions on the target version of the Framework needed. And it doesn't hurt to have in there if it's not needed.

I would keep it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文