Add-ins extend Microsoft Visual Studio using the automation model (EnvDTE). Removed in Visual Studio 2015.
Questions tagged [visual-studio-addins]
452 questions
76
votes
9 answers
Useful Add-Ins or Plug-Ins for native Visual Studio developer
There are plenty of different Add-Ins for Visual Studio see Visual Studio Gallery
. Please share your experiences and favorites.
As motivation, here are some of my favorites:
Versioning Controlled Build [F/O] - very handy extension for automatic…

mem64k
- 748
- 1
- 11
- 25
55
votes
7 answers
Sort selected text from Visual Studio context menu
Currently VS has a very useful feature: sort usings (C#).
I want the same functionality for any random text, for example - XML nodes in config files.
How complex to implement that? VS addin, right? Is it possible to call some VS API which is used…

abatishchev
- 98,240
- 88
- 296
- 433
54
votes
2 answers
What are the differences in the VisualStudio Add-ins for Mercurial?
I'm evaluating Visual Studio Add-ins for Mercurial. Currently, I've identified 3 potential candidates :
VisualHg http://visualhg.codeplex.com
Mercurial Toolbar : http://mercurialtoolbar.codeplex.com
HgSccPackage :…

Symbiosoft
- 4,681
- 6
- 32
- 46
46
votes
8 answers
removing #region
I had to take over a c# project. The guy who developed the software in the first place was deeply in love with #region because he wrapped everything with regions.
It makes me almost crazy and I was looking for a tool or addon to remove all #region…

gsharp
- 27,557
- 22
- 88
- 134
42
votes
2 answers
Visual Studio 2010 addin writing articles/tutorials?
Does anyone know of some good articles / tutorials on writing addins/plugins for Visual Studio 2010?

Simon
- 33,714
- 21
- 133
- 202
41
votes
6 answers
Case preserving find/replace in Visual Studio
There seems to be no built-in support for case preserving find/replace in VisualStudio (see also a respective feature request).
What I mean is: searching for 'BadJob' and replacing with 'GoodJob' would do the following replacements
'badjob' ->…

user45637
- 411
- 4
- 4
32
votes
3 answers
"Visual Studio Integration Package" vs "Visual Studio Add-in": what is the difference?
When creating a new extension for visual studio, there are two project options: "Visual Studio Integration Package" and "Visual Studio Add-in". What is the difference between the two project types and when would you use one over the other?

Nathan Voxland
- 15,453
- 2
- 48
- 64
23
votes
3 answers
Tool Comparison: Visual Assist X and Resharper
.NET developers out there! Need your opinion here!
I am now using Visual Assist X, a decent piece of software, indeed. But the .NET bloggers seem to prefer Resharper more. I might want to consider a switch over, but before that I want your guys…

Graviton
- 81,782
- 146
- 424
- 602
22
votes
5 answers
My vs package did not load correctly
I've got an addin that I developed and used with earlier versions of Visual Studio,
and I've managed to develop an interface between it and a VS Package for VS 2015.
From my "Command" class, I have a callback function that wraps a call to…

Wally Walrus
- 253
- 1
- 2
- 7
19
votes
9 answers
Visual Haskell 2008/2010
Does Visual Haskell for Visual Studio 2008/2010 exist? Or what are the alternatives to try it?
EDIT: I've got a lot of alternatives but it seems that there is no Visual Haskell right now.

Hun1Ahpu
- 3,315
- 3
- 28
- 34
16
votes
4 answers
How are ReSharper C++ and Visual Assist different?
What's different between the two? JetBrains lists some differences here, but I heard there might be some inaccuracies in the list.

Filip Skakun
- 31,624
- 6
- 74
- 100
13
votes
3 answers
Capture window close event
I want to capture events that close editor window (tab) in Visual Studio 2008 IDE.
When I use
dte2.Application.Events.get_CommandEvents(null, 0).BeforeExecute
I successfully captured such…

user167876
- 131
- 1
- 4
12
votes
1 answer
Creating a 'Custom Designer' Visual Studio 2010 Add-in
A major part of our work is creating and manipulating certain XML files, for which have a custom editor. The editor is starting to get creaky and we are looking at building a replacement. Since VS2010 has recently arrived, ostensibly with an…

Daniel Situnayake
- 2,874
- 2
- 30
- 38
12
votes
2 answers
Visual Studio intercepting F1 help command
Im looking to write a visual studio addin that can intercept the default online help command and grab the MSDN library URL when F1 help is called on a class or type.
For example say I place my cursor on the keyword string and press F1 it usually…

LukeDevs
- 131
- 1
- 6
11
votes
3 answers
How do I write to the output window in Visual Studio 2010 AddIn?
I'm writing a simple Visual Studio 2010 Add-In to do a common copying job here at work (getting dlls from libs sln).
I want the progress of the copying to be written to the output window.
I tried Trace.WriteLine(...) expecting that to make it, but…

Eric Brown - Cal
- 14,135
- 12
- 58
- 97