更改 Visual Studio 编译器版本

发布于 2024-12-03 14:10:12 字数 202 浏览 1 评论 0原文

Visual Studio 正在将 Asp.Net 编译为 4.0,但我需要它来编译为 3.5。我在哪里更改这个?

根据这个(右键单击项目、属性页、构建),它的目标是 3.5,但根据我在安装时遇到的错误,我相当确定它需要 4.0 组件。

在此处输入图像描述

Visual Studio is compiling Asp.Net to 4.0, but I need it to compile to 3.5. Where do I change this?

According to this (right click project, property pages, build) it is targeting 3.5, but I'm fairly certain based on the errors I'm getting with install that it's requiring 4.0 components.

enter image description here

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

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

发布评论

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

评论(3

罪#恶を代价 2024-12-10 14:10:12

您检查过 Web.config 文件的 部分吗?如果它仍然显示为 targetFramework="4.0",请尝试删除/更改此值。这在过去对我有用。

Have you checked the <compilation> section of the Web.config file? If it still reads targetFramework="4.0" try removing/changing this value. This has worked for me in the past.

拒绝两难 2024-12-10 14:10:12

不要忘记,您编译的版本并不重要,如果 Web 服务器配置为在特定版本下运行您的应用程序,那就可以了。有些方法可以工作,即编译为 3.5 将在 4.0 应用程序池中工作。反之则不会。

在 IIS7 上,版本是在与您的应用程序关联的应用程序池中定义的。 IIS6 位于 ASP.Net 选项卡中。

Don't forget, it doesn't matter what you version you compile too, if the web server is configured to run your app under a particular version, it will do. Some ways will work, ie compiled to 3.5 will work in 4.0 app pool. other way round won't.

On IIS7 the version is defined in the app pool associated with your app. IIS6 it's in the ASP.Net tab.

晨与橙与城 2024-12-10 14:10:12

手动在 web.config 文件中

并自动在 Visual Studio 中的解决方案资源管理器中右键单击(在 Web 图标中而不是在解决方案图标中)->属性页->构建->目标框架->改变值。

您可以通过查看 web.config 进行检查。

name="system.web.extensions"
类型=“System.Web.Configuration.SystemWebExtensionsSectionGroup,
System.Web.Extensions,版本=3.5.0.0,文化=中性,

表示web使用的是.net Framework 3.5

manually in the web.config file

And Automatically in visual studio, in the solution explorer, right click (in the web icon not in the solution icon) -> property pages -> build -> target framework -> change value.

You can check it, viewing the web.config.

name="system.web.extensions"
type="System.Web.Configuration.SystemWebExtensionsSectionGroup,
System.Web.Extensions, Version=3.5.0.0, Culture=neutral,

it indicate that the web is using net framework 3.5

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