I am working with C# Windows application . I've recently converted a Visual Studio 2008 project to the new Visual Studio 2012 project . Now I have to downgrade this project to Visual Studio 2008 . Is there any way to downgrade this project?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
In addition to the solution provided which is correct, I will add that you need to make sure you don't have code similar to this one in the App.config file, otherwise no matter you will do, you will not be able to run the project(s):
<startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> </startup>
In Visual Studio 2012, change all projects to target .NET Framework 3.5.
In Visual Studio 2008, create a blank solution and then add all .csproj/vbproj to it.
There is no way to go back for .cxxproj Visual C++ projects to Visual Studio 2008.
Well 2012 is compatible with 2010, i am not sure this would work but i found this on how to go back from 2010 to 2008, hope it works for you with 2012 (Original Link):
Go to: Project Properties->Configuration Properties->General->Platform Toolset. Change to different Visual Studio version.
Visual Studio Project Converter?