How to convert a Visual Studio 2010 C++/CLI project to a Visual Studio 2008 project?
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.
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.
精彩评论