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?
-
2Sometimes during conversion backup is made (I don't know 2012, but as far as I remember in previous versions it was an option). Check in project directory - maybe there is some backup copy made before you converted project to 2012. – psur Nov 22 '12 at 07:58
-
1Revert to an older version from your version control system. You do use version control system, do you? – Branko Dimitrijevic Dec 05 '14 at 12:57
5 Answers
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):
Make back up of your .sln file
Open your VS 2010 .sln in notepad.
It should look something like this:
Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 Project("{FAE04EC0-3 ......
Change the Version 11.0 to Version 10.0 and the Visual Studio 2010 to 2008
It should look something like this:
Microsoft Visual Studio Solution File, Format Version 10.00 # Visual Studio 2008 Project("{FAE04EC0-3 .....

- 2,406
- 22
- 27

- 36,908
- 70
- 97
- 130
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>

- 1,991
- 2
- 20
- 36
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.

- 60,503
- 9
- 116
- 147
Go to: Project Properties->Configuration Properties->General->Platform Toolset. Change to different Visual Studio version.

- 21
- 1
- 4