Questions tagged [visual-studio]

Use this tag if you have a specific question about Visual Studio features and functionality. DO NOT use this tag on questions regarding code which merely happened to be written in Visual Studio. Consider tagging the exact technology area your question links to and also tagging a more specific version of Visual Studio. Please mention your exact VS version, edition, and update level in your question. DO NOT use this tag on questions regarding VS Code.

Visual Studio is an integrated development environment (IDE) offered by Microsoft used to develop computer programs for Microsoft Windows, as well as web sites, web applications and web services.

Microsoft Visual Studio History

Prior to Visual Studio Version 4.0, there were Visual Basic 3, Visual C++, Visual FoxPro and Visual SourceSafe as separate products.

Below is the list of the products along with their release date. Note: the actual version numbers for the products are sometimes confused with the last two digits of the 'year' field of the name; these version numbers are shown as "V-nn.x.y.z," where the given "nn" value is the major version number, and 'x', 'y' and 'z' would be the minor version, build and revision numbers, respectively.

The current stable release is Visual Studio 2022 - for questions regarding this specific version use .

Visual Studio Editions

  • Professional includes end-to-end solution to meet demanding quality and scale needs of teams of all sizes
  • Enterprise featuring professional developer tools, services, and subscription benefits for small teams
  • Community is a free, fully-featured IDE for students, open-source and individual developers

See the products page on the Microsoft site for the full list of Visual Studio products and download links. Microsoft also publishes a comparison table where major differences between editions can be seen at a glance to help you decide which edition fits your needs the most.

Using This Tag

You should ask questions about Visual Studio here on Stack Overflow, but if you have bugs to report, report them at Developer community instead.

Consider tagging the exact technology area your question links to and also tagging a more specific version of Visual Studio (see above). Please mention your exact Visual Studio version, edition, and update level in your question.

Do not use this tag on questions just because the code was written in Visual Studio. For example, a question about parsing a date/time string in .NET with C# should not ordinarily be tagged .

More Information

Visual Studio Extensions (.vsix)

You can read about Visual Studio extensions here and see the available Extensions for the Visual Studio family of products.

Developer Community

Developer Community is a website where you can read about the Visual Studio release history. Also see all the reported bugs and find solutions for them. You can help the Visual Studio team and vote on the the issues (which you also have) and they can prioritise the problems and ship fixes to the most demanded ones. Also you can report a problem.

113889 questions
43
votes
4 answers

Is it possible to do a Git Pull --rebase with Visual Studio git tools (and can it be set by default)

First, as the title says, is it even possible in a single step (i.e. not fetch then rebase), to do a pull --rebase? Second, is a setting in Visual Studio to force the built-in Team Explorer git tools to always do a pull --rebase rather than a…
LocalPCGuy
  • 6,006
  • 2
  • 32
  • 28
43
votes
13 answers

Can't edit and continue when using Visual Studio 2010 on a 64 bit machine, app targets x86

I'm having some problems with Edit and Continue when using Visual Studio 2010 on a Windows 7 64 bit machine. I've ensured the following Edit and Continue is enabled under Tools>Options>Debugging>Edit and Continue My solution platform is set to…
43
votes
6 answers

Problems occurred when loading the Microsoft Visual menu

When I opened Visual Studio 2013 today, I got an error. "A problem occurred when loading the Microsoft Visual Menu....", it asked me to reset VS environment via “devenv /resetsetting’’ command and try it again. However it doesn't work. See the…
user1108948
43
votes
3 answers

DLL reference not copying into project bin

Project A references Project B, and Project B references an external DDL (restored using NuGet). The DLL should get copied into Project A's bin folder (along with Project B's DLL): In my case, when running Project A, I get the following exception…
Dave New
  • 38,496
  • 59
  • 215
  • 394
43
votes
14 answers

debugging information cannot be found or does not match visual studio's

I copied an existing project and renamed the folder. Now I get this error when I try to compile the application debugging information cannot be found or does not match. No symbols loaded. Do you want to continue debugging ? If I click yes, it…
numerical25
  • 10,524
  • 36
  • 130
  • 209
43
votes
2 answers

How to disable the automatic asterisk in Visual Studio when adding a multi-line comment in C#?

Possible Duplicate: How do I stop visual studio from automatically inserting asterisk during a block comment? When adding a multi-line comment in Visual Studio, it automatically places an asterisk (*) at the beginning of a new line (on enter)…
Zoman
  • 2,047
  • 4
  • 28
  • 44
43
votes
6 answers

Visual Studio - Page not found

Today I selected "Work Items" as I have a million times before but this time I was met with this error along the top of my "Team Explorer" tab: "Page [some long GUID] not found." This also happened for "Pending changes".
alan
  • 6,705
  • 9
  • 40
  • 70
43
votes
14 answers

The EntityContainer name must be unique. An EntityContainer with the name 'Entities' is already defined

For a little background: I have a DLL project with the following structure: Rivworks.Model (project) \Negotiation (folder) Model.edmx (model from DB #1) \NegotiationAutos (folder) Model.edmx (model from DB #2) I have…
Keith Barrows
  • 24,802
  • 26
  • 88
  • 134
43
votes
13 answers

Circular dependencies

I have 2 projects. Project#2 has a reference to Project#1 Now I need to reference Project#2 in Project#1, but vs.net is complaining about a circular dependency. Is there a way out of this?
mrblah
  • 99,669
  • 140
  • 310
  • 420
43
votes
5 answers

How can i install MonoGame into Visual Studio 2013?

How can I install MonoGame templates for Visual Studio 2013?
Juraj Mlich
  • 678
  • 1
  • 7
  • 15
43
votes
4 answers

How can I make implementation of an interface produce an auto property instead of NotImplementedException?

Consider that we have a simple interface such as ICar when I move mouse over ICar expression and click on Implement Interface Visual Studio generates below implementation. Is there any way of having just an auto property as seen in below sample. I…
Davut Gürbüz
  • 5,526
  • 4
  • 47
  • 83
43
votes
8 answers

LINK : fatal error LNK1561: entry point must be defined ERROR IN VC++

I installed MS VS VC++ for the first time in order to start programming OpenGL with GLFW library. I follower instructions on how to install it over at http://shawndeprey.blogspot.com/2012/02/setting-up-glfw-in-visual-studio-2010.html Then I wrote…
SortOf
  • 459
  • 1
  • 5
  • 5
43
votes
4 answers

what does (template) rebind<> do?

trying to learn more about how the standard library is actually implemented I'm inspecting all containers in visual studio.. Here I see some curious structure: In some base class of a std::list<> The following typedef is found typedef typename…
paul23
  • 8,799
  • 12
  • 66
  • 149
43
votes
7 answers

Is there any way to get Visual Studio to reload all projects when the .proj files have changed?

If I do an svn update while I have Visual Studio open and a number of project files have changed (but not the solution file) I have to wait and click yes on the reload project dialog box every time. Sometimes this can take a while depending on how…
Glenn Slaven
  • 33,720
  • 26
  • 113
  • 165
43
votes
8 answers

Can ReSharper generate code that copies properties from one object to another?

I'm looking for a way to accelerate a repeatable task when I write code. I have ReSharper and I'm thinking a customization could do what I need. I have two objects of the same type. I want to copy all of the public properties of one object to the…
a7drew
  • 7,801
  • 6
  • 38
  • 39