如何将项目从 .NET 3.5 降级到 .NET 2.0?
如果项目没有使用 .NET 3.5 的任何功能,如何降级到 2.0?
If the project is not using any features from .NET 3.5, how do you downgrade to 2.0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只需进入项目属性,然后在“应用程序”下找到“目标框架”选项并将其设置为 2.0。
Simply go into the project properties, and under "Application" find the "Target framework" option and set it to 2.0.
转到项目属性并在“应用程序”选项卡上选择不同的目标框架。
Go to project properties and select different destination framework on Application tab.
解决方案资源管理器->右键单击项目->属性->将运行时版本更改为2.0
Solution Explorer->Right-click on the project->Properties->Change runtime version to 2.0
打开您的
.vcproj
并将该行更改为:它应该可以解决问题
Open your
.vcproj
and then change the line to:It should do the trick