I have a project in Microsoft Visual Studios 2013 and I want to open it in Microsoft Visual Studios 2010. Is there any easy way? or Do I ha
For 2015 to 2010 Premium use these lines in the .sln file.
Microsoft Visual Studio Solution File, Format Version 11.0
# Visual Studio 11
VisualStudioVersion = 10.0.40219.1
MinimumVisualStudioVersion = 10.0.40219.1
I had some issues that were resolved by a combination of things. In my case I was converting a VB 2013 project to 2010. I solved it by:
Open the solution file in notepad (.sln) Change these lines:
To:
I also had to update the references. I had the issue that it give an error every time I went to view designer. In my case it was:
(credit to @PandiyanT and @talmok)
This worked for me: open the solution(.sln) file with Notepad and change right values to left values in this way :
Format Version 12.00
to Format Version 11.00
Visual Studio 2013
to # Visual Studio 2010
and then open visual C# project file with notepad and change right value to left value in this way :
ToolsVersion="12.0"
to ToolsVersion="4.0"
Open you solution file in notepad. Make 1 change, as stated in Converting VS2012 Solution to VS2010:
Replace "# Visual Studio 2013" with "# Visual Studio 2010" (without quotes.)
http://social.msdn.microsoft.com/Forums/vstudio/en-US/ef97fa9c-b89b-4a89-8bda-03457dff9c61/how-to-downgrade-from-visual-studio-2012-project-to-vs-2010
How to downgrade from Visual Studio 2012 project to Visual Studio 2008
open the solution file with notepad and editing like
Format Version 12.00===> Format Version 11.00
is also working
I changed ToolsVersion="12.0" to ToolsVersion="4.0" in my .csproj file and .csproj.user file, I hope it helps someone out there.