Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why are the Visual Studio executables inside a folder called 'Common7' instead of say Common10 or just Common?

This is not the most important question in the world but I would like to know exactly why the Common7 is named this way and not incremented with releases. Is this like the Windows 7/8 version number issues (ie Windows 8 is version 6.2)?

The folder in question (with VS2010) is usually located in either:

%programfiles%\Microsoft Visual Studio 10.0\Common7\
or %programfiles(x86)%\Microsoft Visual Studio 10.0\Common7\

like image 537
Jeremy Avatar asked Jun 11 '11 08:06

Jeremy


People also ask

Where is the exe file for Visual Studio?

In Visual Studio you can open any EXE as a 'project'. Just go to File->Open->Project/Solution and browse to the .exe file.

How do I change folder location in Visual Studio?

In Visual Studio, click Tools > Options. Expand Projects and Solutions and click Locations. The Projects location field defines the default location for storing new projects. You can change this path if you are using a different working folder.


1 Answers

The first .NET version of Visual Studio was internal version 7.0, so I think they named the folder Common7 based on that. Then later there were a lot of dependencies (probably external, like plugins or whatnot) that used the name Common7 so it would break too much if they changed it in later version.

like image 152
Haukman Avatar answered Oct 05 '22 12:10

Haukman