Has anyone managed to convert the VS 2008 C ++ / CLI project (vcproj) into the VS 2010 project (vcxproj), supporting .NET 3.5 as the target structure? I could not do this and successfully implemented the project. The project compiles fine in VS2008 as .NET 3.5 and works fine in VS2010 as .NET 4.0, but I cannot target .NET 3.5 in 2010. The IDE does not seem to provide it with an option and modifies the vcxproj file by adding
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
causes compilation to fail with an error:
Error 1 error C1001: An internal error has occurred in the compiler.
According to this link , there are apparently some differences in the compilers used between VS2008 and 2010, but manually editing the project file is still suggested as a solution. Does anyone know about this?
source
share