The minimum version of Visual Studio for Visual Studio 2015

I updated the project from VS 2013 to VS 2015. Everything works fine, now I can open the same project in both VS 2013 and VS 2015.

Now, with this new Roslyn VS 2015 compiler, I assume that when I introduce some of the new C # 6 features in Project, I can only open the project in VS 2015. (In 2013, I will get some error compiler)

What will be the MinimumVisualStudioVersion for entering the .sln file, so far I have managed to open the solution in VS 2013, VS 2012, as well as VS 2010:

 # Visual Studio 2013 VisualStudioVersion = 12.0.40629.0 MinimumVisualStudioVersion = 10.0.40219.1 

This means that it was possible to open VS2013 Projects in VS 2010 without any problems.

But, with the new features of the 2015 compiler, does this mean that MinimumVisualStudioVersion must be> = before 14.x.xxxxx.x for VS 2015 projects?

+7
c # visual-studio visual-studio-2015 sln-file
source share
1 answer

This means that the minimum version of Visual Studio to open this solution is 10.0.40219.1 , which is actually Visual Studio 2010 SP1 .

+2
source share

All Articles