将 VS2008 上编写的代码部署到运行 .NET Framework 2.0 的服务器时遇到问题

发布于 2024-07-06 07:00:43 字数 608 浏览 7 评论 0原文

当我创建要部署的项目时,我选择了要以 .NET Framework 2.0 为目标。 部署项目后,我尝试浏览它并获取错误页面,其中显示:

<compilation debug="true">
    <assemblies>
        <add assembly="System.Web.Entity, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
        <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
    </assemblies>
</compilation>

VS2008 的卖点之一是您可以开发并部署到运行 .NET2.0 的服务器,我做错了什么?

When I created the project I'm trying to deploy I selected that I wanted to target .NET Framework 2.0. After deploying the project I try to brows to it and get and error page that shows:

<compilation debug="true">
    <assemblies>
        <add assembly="System.Web.Entity, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
        <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
    </assemblies>
</compilation>

One of the selling points of VS2008 is that you can develop for and deploy to server running .NET2.0 what Am I doing wrong?

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

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

发布评论

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

评论(4

手长情犹 2024-07-13 07:00:43

右键单击您的项目并选择“属性”。 从那里,选择“编译”选项卡,然后单击左下角的“高级编译选项”按钮。 最后一个下拉列表项应该是“目标框架”,您可以从那里选择 2.0。 如上所述,前提是您没有使用任何 3.5 相关技术,例如 LINQ。

保存、重新编译和部署。 一切设置完毕后,您可以返回并选择 3.5 选项以再次针对 3.5 框架。

希望这可以帮助!

哦,还有一件事要注意。 如果您在 3.5 应用程序中使用 AJAX 工具包控件(日历扩展器、自动完成扩展器等),则需要确保从 codeplex 站点下载 1.0 工具包,因为 3.5 工具包与2.0框架。

Right click on your project and select "Properties." From there, select the "Compile" tab and click the "Advanced Compile Options" button down at the bottom left. The last drop down list item should be "Target Framework" and you can select 2.0 from there. As mentioned above, this is provided you're not using any 3.5 related technologies such as LINQ.

Save, recompile and deploy. Once everything is set, you can go back and select the 3.5 option to target the 3.5 framework again.

Hope this helps!

Oh, one other thing to note. If you are using the AJAX Toolkit controls in your 3.5 application (calendar extender, auto-complete extender, etc.), you'll need to make sure you download the 1.0 Toolkit from the codeplex site since the 3.5 toolkit is not compatible with the 2.0 framework.

苹果你个爱泡泡 2024-07-13 07:00:43

您正在引用 .NET Framework 3.5 的程序集,您是否使用 EntityDataSources?

删除那些 3.5 引用...

您还需要服务器上 .NET 2.0 的 AJAX 扩展 (System.Web.Extensions)。

You are referencing assemblies of the .NET Framework 3.5, are you using EntityDataSources??

Remove those 3.5 references...

You also need the AJAX Extensions (System.Web.Extensions) for .NET 2.0 on the server.

甜是你 2024-07-13 07:00:43

从您的项目中删除这些引用并重新部署。 如果您的项目从 3.5 开始,它仍然会引用其中一些程序集

remove those references from your project and redeploy. if your project started as 3.5 it will still have references to some of those assemblies

晨光如昨 2024-07-13 07:00:43

如果您使用 3.5 框架中的功能,则必须部署到 3.5 计算机。

对于此问题,您可能需要的大多数信息都在此处的问题和答案中:
问题执行-在服务器上编译的 35 代码仅具有 20 框架

If you're using features from the 3.5 framework, then you'll have to deploy to a 3.5 machine.

Most information you'd probably need for this issue is in the question and answers here:
problems-executing-compiled-35-code-on-a-server-which-only-has-the-20-framework

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