在 Visual Studio 2008 中更改目标框架
与 Visual Studio 有何关系?
我尝试导入缓存应用程序块并收到以下消息:
您尝试导入的程序集或其依赖项之一需要更高版本的 .NET Framework。
我在 Visual Studio 中转到应用程序的属性,但找不到要切换的下拉菜单......这是怎么回事?
What's the deal with Visual Studio?
I tried importing the Caching App Block and got this message:
The assembly or one of its dependencies you're are trying to import requires a later version of .NET Framework.
I went to the properties of my application in Visual Studio, but I can't find the dropdown to switch....what's the deal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
找到了......转到“编译”选项卡上的“高级编译选项”......奇怪!
Found it....went to "Advanced Compile Options" on Compile Tab.....weird!
我认为它们使 C# 项目和 VB 项目有所不同。
C# 项目
解决方案资源管理器 --> 项目--> 属性,在“应用程序”选项卡上,您将看到“目标框架”。
VB 项目
项目属性 --> 编译--> 高级编译选项
I think they make it different for C# project and VB project.
C# project
Solution Explorer --> Project --> Properties and on the Application tab you'll see Target Framework.
VB project
Project Properties --> Compile --> Advanced Compile Options
它应该位于项目属性的“应用程序”选项卡上。 关于 Visual Studio 2008 如何处理框架定位的一篇精彩文章是 VS 2008 多目标支持。
It should be on the Application tab in the project's properties. A great article on how Visual Studio 2008 handles framework targeting is VS 2008 Multi-Targeting Support.
在 Visual Studio 2008 中,“目标框架”选项对我来说是灰色的。 我必须按照文章如何:修改目标框架和平台工具集以更改目标框架,以便两个相关项目可以协同工作。
基本上,您使用错误的框架卸载项目,在 Visual Studio 中将项目文件作为文本文件打开,在 XML 中找到指定目标框架的行,并将其更改为所需的框架。 保存文件并重新加载项目。
In Visual Studio 2008, the Targeted Framework option was greyed out for me. I had to follow the instructions in article How to: Modify the Target Framework and Platform Toolset to change the Targeted Framework so that two related projects could work together.
Basically you unload the project with the wrong framework, open the project file in Visual Studio as a text file, find the line in the XML that specifies the Targeted Framework and change that to the desired framework. Save the file and reload the project.
转到项目的属性(解决方案资源管理器 --> 项目 --> 属性或菜单栏 --> 项目 --> 属性),然后在“应用程序”选项卡上您将看到“目标框架”。
Go to the properties of a project (Solution Explorer --> Project --> Properties or Menu Bar --> Project --> Properties) and on the Application tab you'll see Target Framework.