Olav
Olav

Reputation: 1784

Visual Studio 2015 versions - Parallell installations

Can installing different 2015 versions in parallell or at different times cause problems?

Also, to what extent are the installations shared (Items not duplicated)?

Do the open source versions have different binaries?

(Have had problems before - therefore this question)

Upvotes: 0

Views: 88

Answers (1)

Martheen
Martheen

Reputation: 5580

You can have all of the VS 2015 Express (Web, Desktop, Windows) and one of VS 2015 Community/Professional/Enterprise on the same OS installation. The installation obviously share various SDK, .NET Frameworks compiler and tools, but the VS-shell is different. Doesn't mean much except it's possible to have one of your Express stopped working while the Community run fine, and vice versa.

There is no open source versions of VS currently, I assume you mean the gratis but proprietary Community? Aside from the specific features (mostly while coding/debugging) exclusively available on Professional or Enterprise, all VS 2015 editions (Express if the project type is supported) including Community will generate identical binaries since they're calling the same compiler anyway.

The answer here suggests uninstallation before moving between Community, Professional and Enterprise.

EDIT : After your clarification, VS Code is a self-contained app that happen to have VS branding. The only shared requirements is .NET Framework, but otherwise it should have no interference risk.

Upvotes: 1

Related Questions