A.G.
A.G.

Reputation: 2149

Using multiple versions of Visual Studio on same code base

If a code base (C#) is already being coded under VS2012, can VS2015 also be used on the same code/solution/projects without changing or corrupting it?

thanks!

Upvotes: 0

Views: 56

Answers (1)

Alex Walker
Alex Walker

Reputation: 2346

Yes, Visual Studio 2012 C# projects can be opened in VS2015 and vice versa. I have been using both alongside each other for several months.

Check out this related question and the official guide on MSDN to portability and upgrading. In short, not all project types are supported, but for C# everything is fine.

Upvotes: 1

Related Questions