Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们在 VS2010 项目文件中有一个现有代码,它运行良好。我们正在尝试将 VS2010 项目转换为 2011 .vcxproj 文件..
任何人都知道如何以一种聪明的方式进行转换
对我来说,我需要做的就是在 VS2012 中打开 VS2010 项目。
您可以查看 .vcxproj 文件的 xml 中发生了什么变化。我相信它只是一个从 v10 变为 v11 的字符串
<PlatformToolset>v110</PlatformToolset>
编辑:您可以编写一个批处理来批量转换这些,或者使用某种 XSLT 来自动转换它们......