vote up 51 vote down star
97

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 edit helper because it does really improve my productivity when working with ASP.NET applications. What it does is provide a quick way to type out server side controls, it automatically fills in runat="server" and id="" and puts your cursor in between the quotes of ID so you can type it in.

Here is a summarized list of all the plugins discussed so far

  1. ASPX Edit Helper - Snippets for editing asp.net
  2. Re-Sharper - Fast Refactoring
  3. Power Commands
  4. Reflector
  5. GhostDoc - Generates XML comments
  6. Visual Assist X
  7. Rock Scroll
  8. TestDriven.NET
  9. NCover
  10. AnkhSVN - SVN Integration
  11. ViEmu - Vim Emulation
  12. VisualSVN - SVN Integration
  13. Theme Generator
  14. Skype Add-in
  15. XML Explorer
  16. Resource Refactoring
  17. Linq2Sql Debugger Visualizer - Easily debug Linq2SQL
  18. Visual Studio File Explorer
  19. Visual Studio Window Manager
  20. TFS PowerToys
  21. Expression Tree Visualizer
  22. StyleCop
  23. Regions Manager
  24. Regionerate
  25. Code Keep - Manage Code Snippets from anywhere
  26. CR Documentor
  27. DXCore Community Plugins
  28. NUnit
  29. CodeRush Xpress
  30. JSLint
  31. NUnit for VS - NUnit integration
  32. Instant Gratification - Tells you how awesome your code is
  33. Entrian Source Search, a Code Search add-in. "Find In Files" on steroids.
  34. Goanna - static analysis for C/C++
  35. StudioTools
  36. USysWare DPack Code Browser - Fast code navigation
flag

58 Answers

prev 1 2
vote up 0 vote down

I actually have a favorite setting: Since i installed dark theme on my VS i'm getting the code from totally different point of view. And i like it.

link|flag
vote up 0 vote down

My eyes are much happier since I started using the zenburn fonts and colours scheme. Soothing.

link|flag
vote up 0 vote down

I'll cast another vote for both ReSharper and Visual Assist X. Both are great tools that greatly add to the Visual Studio experience in significant ways that have to be experienced to fully appreciate. I use both and appreciate both of them. I have used Visual Assist X for several years, and wouldn't want to program without it. I just started to use ReSharper, and I have become a huge fan of it, after using it to go through all my .Net code and correcting all the little code issues that it found, and my code was much better afterwards, and it even helped me find a potential bug or two that had remained hidden for quite some time, as well as identifying variables and code blocks that would never be executed, so they could be excised.

So, despite the ramble, I wholeheartedly vote for both ReSharper and Visual Assist X.

link|flag
vote up 0 vote down

If you are a Linq2SQL user, the Linq 2 SQL Debugger Visualizer is a must have.. You can get it here

link|flag
vote up 0 vote down

Visual Studio Window Manager allows you to manage and save window layouts for visual studio, this is very helpful for me because I like to hide all my toolbars by default, but sometimes to are helpful to have around.

link|flag
vote up 0 vote down

Roland Weigelt's GhostDoc

link|flag
vote up 0 vote down

Trac Explorer provides integration with Trac from within Visual Studio. This is a must have for any shop thats using Trac.

link|flag
vote up 0 vote down

Xml Visualizer allows you to apply XSLT style sheets and run xpath queries on XML data, along with viewing the data better.

link|flag
vote up 0 vote down

Dispatch is what the Copy Web Site function should have been

link|flag
vote up 0 vote down

Here is a great site that lists a lot of visual studio plugins. http://www.visualstudiogallery.com/

link|flag
vote up 0 vote down

ViEmu, my muscle memory has the Vi keybindings ingrained in it.

link|flag
vote up 0 vote down

NDepend is a fantastic code analysis tool, easily the best I have seen for understanding your (or someone else's) code at multiple levels. Draws pretty diagrams too, and comes with its own query language for easily defining your own FXCop-style requirements.

link|flag
vote up 0 vote down

Well if you're an ASP.NET developer the Visual Studio spell checker is useful: http://blogs.msdn.com/mikhailarkhipov/archive/2006/04/17/577471.aspx

link|flag
vote up 0 vote down

Mindscape file explorer and Regionerate are not mentioned yet, but my favorite is definitely Reshareper.

link|flag
show 1 more comment
vote up 0 vote down

As well as Resharper and VisualSVN, which have been mentioned numerous times already, I've also found the RegionTools macros by Roland Weigelt very useful and use them almost daily.

link|flag
vote up 0 vote down

Multi-Lang Add-In allows you to easily manage localized applications.

link|flag
vote up 0 vote down

A cool setting I just found is adding a Guide Line on your editor so you can see if you are going over a certain amount of characters, Sara Ford shows you how here.

link|flag
vote up 0 vote down

NUnitForVS is great if you want to use NUnit without paying for VS integration.

link|flag
vote up 0 vote down

CodeRush Xpress has come out and is being shipped for free!

link|flag
vote up 0 vote down

VSFileExplorer is a nice file explorer for VS. It's also very helpful when used together with subversion/tortoiseSVN, since it displays the tortoise overlay icons within VS.

link|flag
vote up 0 vote down

These Two:

http://code.msdn.microsoft.com/TheNotifyIconExample

http://code.msdn.microsoft.com/SEHE

link|flag
vote up 0 vote down

If you use Trac and Subversion, check out TracExplorer as well. I created it for my own needs, and so far it's exceeded all expectations.

link|flag
vote up 0 vote down

Are you tired of having to open VSTD IDE to build/rebuild/clean your project?

Then this might help:

http://www.codeplex.com/msbuildshellex

link|flag
vote up 0 vote down

I only just found this, I wish I'd got it months earlier:

JSLint Visual Studio Addin

and the codeproject page with animations of it in action. My only gripe (which is a JSLint one) is that it warns about functions being undefined if they're not declared in order.

If you're using external libraries, you can stop JSLint throwing errors by adding the following, or equivalent to the top of the file:

/*extern $, jQuery */
link|flag
vote up 0 vote down

Entrian Source Search, a Code Search add-in. Lets you search your source code in a fraction of a second, even for huge solutions. Gives syntax-coloured search results. Like Find In Files on steroids.

link|flag
vote up 0 vote down

Goanna - a Visual Studio add-in for static analysis of C/C++. I can't live without it, because my day job is as a RedLizard Software programmer. :)

link|flag
vote up 0 vote down

tangible T4 Editor is quite good for writing T4 templates

The free version has limited features, but it's nevertheless much better than the standard editor...

link|flag
vote up 0 vote down

I'm surprised Cool Commands hasn't been mentioned yet. Can't do without them!

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.