如何将 Visual Studio 2010 C++CLI 项目转换为 Visual Studio 2008 项目?
有人知道如何将 Visual Studio 2010 C++/CLI 项目转换为 Visual Studio 2008 项目吗?我只找到了有关 C# 项目的提示和工具。
Does somebody know how to convert a Visual Studio 2010 C++/CLI project to a Visual Studio 2008 project? I have only found hints and tools regarding C# projects.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有实际的方法可以做到这一点,C++ 项目的项目文件格式在 VS2010 中发生了巨大的变化。经过重新设计,他们使用 MSBuild 来构建项目,就像其他受支持的语言一样。甚至文件扩展名也发生了变化,从 .vcproj 更改为 .vcxproj。
您需要在 VS2008 中重新创建该项目。
There's no practical way to do this, the project file format for C++ projects has dramatically changed in VS2010. As a result of a re-engineering effort to make them use MSBuild to build projects, just like the other supported languages. Even the filename extension has changed, from .vcproj to .vcxproj.
You'll need to re-create the project in VS2008.