Visual Studio is the line of software development products from Microsoft.
438
votes
10answers
120k views
Using Git with Visual Studio
As a long-time Visual SourceSafe user (& hater) I was discussing switching to SVN with a colleague; he suggested using Git instead, since apparently it can be used peer-to-peer without a central ...
417
votes
47answers
49k views
Visual Studio optimizations [closed]
Visual Studio is a pretty awesome IDE, but sometimes you just wish it would go faster. I was wondering if people have any tips or tricks to help speed up Visual Studio in day-to-day use.
Things that ...
235
votes
14answers
25k views
ASP.NET: Web Site or Web Application?
When I start a new ASP.NET project in Visual Studio 2008, I can either create a new ASP.NET Web Site or an ASP.NET Web Application.
What's the difference between these two project types? Why would I ...
209
votes
122answers
15k views
Favorite Visual Studio keyboard shortcuts
What is your favorite Visual Studio keyboard shortcut? I'm always up for leaving my hands on the keyboard and away from the mouse!
One per answer please.
181
votes
100answers
18k views
Hidden Features of Visual Studio (2005-2010)?
Visual Studio is such a massively big product that even after years of working with it I sometimes stumble upon a new/better way to do things or things I didn't even know were possible.
For instance-
...
177
votes
39answers
22k views
Visual Studio 2010 - recommended extensions [closed]
What are your recommended extensions for Visual Studio 2010?
(Please indicate if its free or not)
Free:
PowerCommands - useful extensions for the Visual Studio 2010 adding additional ...
170
votes
40answers
18k views
What's the compelling reason to upgrade to Visual Studio 2010 from VS2008?
Are there new features in Visual Studio 2010 that are must-haves?
If so, which ones?
For me, the big draws for VS2008 as compared to VS2005 were LINQ, .NET Framework multitargeting, WCF (REST + ...
162
votes
15answers
24k views
Should I add the Visual Studio .suo and .user files to source control
Visual Studio solutions contain two types of hidden user files. One is the solution .suo file which is a binary file. The other is the project .user file which is a text file. Does anyone know ...
114
votes
6answers
37k views
How to run Visual Studio post-build events for debug build only
How can I limit my post-build events to running only for one type of build? I'm using the events to copy DLLs to a local IIS virtual directory but I don't want this happening on the build server in ...
107
votes
16answers
63k views
Visual Studio setup problem - 'A problem has been encountered while loading the setup components. Canceling setup.'
I've had a serious issue with my Visual Studio 2008 setup. I receive the ever-so-useful error 'A problem has been encountered while loading the setup components. Canceling setup.' whenever I try to ...
106
votes
2answers
2k views
Making your .NET language step correctly in the debugger
Firstly, I apologize for the length of this question.
I am the author of IronScheme. Recently I have been working hard on emitting decent debug info, so that I can use the 'native' .NET debugger.
...
98
votes
77answers
13k views
Do you have any recommended add-ons/plugins for Microsoft Visual Studio?
Freebies preferred, but if it is worth the cost....
96
votes
6answers
16k views
Adding a guideline to the editor in Visual Studio [closed]
Introduction
I've always been searching for a way to make Visual Studio draw a line after a certain amount of characters:
Below is a guide to enable these so called guidelines for various versions ...
95
votes
14answers
49k views
How do you count the lines of code in a Visual Studio solution?
Is it possible to find the number of lines of code in an entire solution? I've heard of MZ-Tools, but is there an open source equivalent?
92
votes
10answers
38k views
Visual Studio opens the default browser instead of Internet Explorer
When I debug in Visual Studio, Firefox opens and that is annoying because of the hookups that Internet Explorer and Visual Studio have, such as when you close the Internet Explorer browser that ...
85
votes
8answers
9k views
.gitignore for Visual Studio Projects and Solutions
Which files should I include in .gitignore when using Git in conjunction with Visual Studio Solutions (.sln) and Projects?
Community Wiki:
#OS junk files
[Tt]humbs.db
*.DS_Store
#Visual Studio ...
81
votes
115answers
10k views
What's Your Biggest Visual Studio 2008 Annoyance? [closed]
I love Visual Studio about 90% of the time, but that last 10% it is such a PITA it makes me want to launch my monitor off the desk.
My latest annoyances:
It won't remember my toolbar settings. I ...
80
votes
34answers
47k views
Very slow compile times on Visual Studio
We are getting very slow compile times, which can take upwards of 20+ minutes on dual core 2GHz, 2G Ram machines.
A lot of this is due to the size of our solution which has grown to 70+ projects, ...
76
votes
5answers
42k views
What are the various “Build action” settings in VS.NET project properties and what do they do?
For the most part you just take whatever Visual Studio sets it for you as a default.. I'm referring to the BuildAction Property for each file selected in your solution explorer. There are a number of ...
73
votes
61answers
7k views
What is your favorite Visual Studio add-in/setting? [closed]
What add-in/setting in Visual Studio can you not live without? Which one improves your productivity or fixes something you can't stand in Visual Studio? Why is it your favorite?
My favorite is aspx ...
72
votes
3answers
18k views
How to “Add Existing Item” an entire directory structure in Visual Studio
I feel ridiculous for asking this because it seems like it should be so simple, however I have been unable to discover an answer to this question.
I have a free standing set of files not affiliated ...
70
votes
14answers
4k views
Visual Studio debugger tips & tricks for .NET
I've been working for years with VS's debugger, but every now and then I come across a feature I have never noticed before, and think "Damn! How could I have missed that? It's so useful!"
...
69
votes
18answers
21k views
2008: Resharper vs. CodeRush [closed]
I know there are many discussions if Resharper or CodeRush is better. At my company we currently use Resharper and I'm fine with it.
But last week I watched a screencast about CodeRush and thought ...
68
votes
7answers
77k views
How can I use MS Visual Studio for Android Development?
Can you use Visual Studio for Android Development?
If so how would you set the android SDK instead of .NET framework and are there any special settings or configuration?
67
votes
9answers
6k views
How do you get JavaScript/jQuery Intellisense Working in VS 2008?
I thought JQuery Intellisense was supposed to be improved with SP1. I even downloaded an annotated version of jquery 1.2.6, but intellisense will not work in a separate jscript file. I have the jquery ...
65
votes
4answers
51k views
Debugging with command-line parameters in Visual Studio
I'm developing a C++ command-line application in Visual Studio and need to debug it with command-line arguments. At the moment I just run the generated EXE file with the arguments I need (like this ...
63
votes
10answers
30k views
How do I rename a Project Folder from within Visual Studio?
My current solution for renaming the project folder is:
Remove the project from the solution.
Rename the folder outside Visual Studio.
Re-add the project to the solution.
Is there a better way?
62
votes
12answers
6k views
Can I find out the return value before returning while debugging in Visual Studio
Take the following function:
DataTable go()
{
return someTableAdapter.getSomeData();
}
When I set a breakpoint in this function, is there a possibility to inspect the returned value? The "go" ...
60
votes
1answer
10k views
How to build Qt for Visual Studio 2010
I struggled finding a how-to which provides a stable solution for using Qt with Visual Studio 2010, so after collecting all the bits of information and some trial and error, I would like to write my ...
58
votes
8answers
23k views
Visual Studio - Command to collapse all sections of code?
In Visual Studio (2008) there a command to collapse/expand all the sections of code in a file?
58
votes
7answers
17k views
Disable, but not uninstall Resharper 4.x onwards
Any ideas on how to disable, but not uninstall Resharper 4.x or above?
58
votes
6answers
43k views
Targeting both 32bit and 64bit with Visual Studio in same solution/project
Greetings.
I have a little dilemma on how to set up my visual studio builds for multi-targeting.
Background: c# .NET v2.0 with p/invoking into 3rd party 32 bit DLL's, SQL compact v3.5 SP1, with a ...
57
votes
13answers
24k views
Can I automatically increment the file build version when using Visual Studio?
I was just wondering how I could automatically increment build (and version?) of my files when using Visual Studio (2005).
If I look up the properties of say C:\Windows\notepad.exe, the Version tab ...
57
votes
26answers
34k views
How do you force Visual Studio to regenerate the .designer files for aspx/ascx files?
Sometimes when I'm editing page or control the .designer files stop being updated with the new controls I'm putting on the page. I'm not sure what's causing this to happen, but I'm wondering if ...
56
votes
34answers
4k views
How do I convince my team to drop sourcesafe and move to SVN?
My development team uses source safe at a very basic level. We're moving into some more advanced and extended development cycles and I can't help but think that not using branching and merging in ...
56
votes
8answers
12k views
Remove unused references (!= “using”)
How can I find and delete unused references in my projects?
I know you can easily remove the using statements in vs 2008, but this doesn't remove the actual reference in your projects. The ...
46
votes
16answers
3k views
Should a .sln be committed to source control?
Is it a best practice to commit a .sln file to source control? When is it appropriate or inappropriate to do so?
Update
There were several good points made in the answers. Thanks for the responses!
46
votes
16answers
35k views
Will installing Visual Studio 2010 side by side with VS2008 cause problems?
What kind of problems might this cause?
Is it better to install in a VM?
45
votes
13answers
13k views
What is the best way to version control my SQL server stored procedures?
What is the best way to version control my database objects? I'm using Visual studio 2005/2008 and SQL server 2005. I would prefer a solution which can be used with SVN.
44
votes
8answers
4k views
Open two instances of a file in single Visual Studio session
I have a file a xyz.cpp. I want to open two instances of a this file in Visual studio (btw I am using 2005). Why would I want to do so? I want to compare two sections of the same file side by side. I ...
44
votes
10answers
24k views
Visual Studio support for new C / C++ standards?
I keep reading about C99 and C++11 and all these totally sweet things that are getting added to the language standard that might be nice to use someday. However, we currently languish in the land of ...
43
votes
3answers
9k views
Difference between Rebuild and Clean + Build in Visual Studio 2008
What is the difference between just a Rebuild and doing a Clean + Build in Visual Studio 2008? Is Clean + Build different then doing Clean + Rebuild?
42
votes
1answer
3k views
Is it possible to change the location of packages for NuGet?
I have the following convention for most of my projects:
/src
/Solution.sln
/SolutionFolder
/Project1
/Project2
/etc..
/lib
/Moq
moq.dll
...
42
votes
9answers
6k views
ASP.NET MVC RequireHttps in Production Only
I want to use the RequireHttpsAttribute to prevent unsecured HTTP requests from being sent to an action method.
C#
[RequireHttps] //apply to all actions in controller
public class SomeController
{
...
42
votes
5answers
16k views
Why does Visual Studio create a new .vsmdi file?
If I open a solution in Visual Studio 2008 and run a unit test then VS creates a new .vsmdi file in the Solution Items folder and gives it the next number available e.g. My Solution2.vsmdi.
Any idea ...
41
votes
12answers
31k views
What Subversion plugins for Visual Studio are there?
What Subversion plugins exist for Visual Studio?
41
votes
13answers
13k views
What is the best practice for “Copy Local” and with project references?
I have a large c# solution file (~100 projects), and I am trying to improve build times. I think that "Copy Local" is wasteful in many cases for us, but I am wondering about best practices.
In our ...
41
votes
9answers
15k views
AnkhSVN versus VisualSVN
I currently use AnkhSVN to integrate subversion into Visual Studio. Is there any reason I should switch to VisualSVN?
AnkhSVN is free (in more than one sense of the word) while VisualSVN costs $50. ...
41
votes
8answers
4k views
Changing ctrl+tab behavior for moving between document in Visual Studio
Is it possible to change how ctrl+tab and shift+ctrl+tab work in Visual Studio? I have disabled the popup navigator window because I only want to switch between items in the tab control. My problem is ...
40
votes
2answers
4k views
Visual Studio: Make view code default
Is there any way to make Visual Studio show the code of a control / form by default instead of the designer? I tend not to be a fan of the designers as they add bloat.