在 VS.NET 2010 中切换目标框架
有没有办法一举改变一个解决方案所有项目的目标框架?改变 18 个项目的目标有点乏味。
Is there a way to change the target framework of all the projects of a solution in one fell swoop? Changing the target on 18 projects is a little tedious.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在项目文件中搜索
并替换为所需的版本。
Do a search on the project files for
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
and replace with the desired version.
Scott Dorman 编写了一个宏来执行此操作: http://www.codeproject.com/Articles/74805/Visual-Studio-2010-and-Target-Framework-Version.aspx
Scott Dorman wrote a macro to do this: http://www.codeproject.com/Articles/74805/Visual-Studio-2010-and-Target-Framework-Version.aspx
以下是在 VS2010 中更改目标框架的方法。
右键单击项目。
单击“编译”选项卡
在底部单击“高级编译选项...” "
从“目标框架(所有配置):”中选择框架
Here is how you change the Target Framework in VS2010.
Right click the Project.
Click the "Compile" tab
At the bottom click "Advanced Complie Options..."
Choose the framework from "Target framework (all configurations):"
您可以录制一个宏,然后在解决方案中的所有项目中循环它吗? (还没用过2k10。)
Can you record a macro and then loop it through all projects in the solution? (Haven't used 2k10 yet.)