Tagged Questions

Add-ins extending the Visual Studio software development products from Microsoft.

learn more… | top users | synonyms

33
votes
11answers
5k views

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 ...
27
votes
3answers
9k views

Visual Studio 2010 addin writing articles/tutorials? [closed]

Does anyone know of some good articles / tutorials on writing addins/plugins for Visual Studio 2010?
13
votes
4answers
2k views

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 events: ...
10
votes
3answers
8k views

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 ...
9
votes
1answer
606 views

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? ...
9
votes
8answers
4k views

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.
8
votes
6answers
5k views

What Visual Studio add-ins do you use for C++ refactoring?

I have just started using Visual Assist X for C++ refactoring in Visual Studio 2008. It is quite good, but IMO, not to the same level as what ReSharper has for C#. I am wondering what people are using ...
8
votes
2answers
5k views

Visual Studio add-on gallery?

i'm hoping to find some add-ons for Visual Studio to address some specific usability issues. Is there a Visual Studio addons gallery that contains a huge dumping ground of addons that every person, ...
7
votes
1answer
2k views

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 ...
7
votes
2answers
2k views

“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 ...
7
votes
3answers
2k views

Why does Visual Studio 2008 forget where to dock my add-in's window pane?

I wrote a simple add-in for Visual Studio 2008 that opens a dockable window pane. You can download the source and a binary installer by clicking here. The nature of the add-in means that it is ...
6
votes
2answers
239 views

Visual Studio AddIn: How do I Add Item Specific Commands to the Solution Explorer Context Menu

I've spent about 3 days now trying to get this working but to no avail. I'm fairly new to VS.NET extensibility and I find it hard to debug my problems. I've already tried the code here presented: ...
6
votes
2answers
259 views

VS 2010 Extensibility: Create a extension to automatically wrap selected text (code) in comments and adding a comment above it

I am trying to develop an extension that will work similar to the Comment toolbar button in VS 2010 ... but I want to mark all text as Commented Out and put a comment above it. Heres an example. I ...
6
votes
3answers
228 views

Visual Studio 2008/2010: show method names in Find In Files results

I had a dream I could see constructor/method/property names along with search results (Visual Studio Find In Files feature), if applicable/available. For example, if I searched for _dreamProvider in ...
6
votes
2answers
245 views

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' ...
5
votes
3answers
84 views

Tools to monitor performance of C# methods [closed]

Possible Duplicate: What Are Some Good .NET Profilers? I am really not sure if such a tool or Addins exits to monitor the performance(time elapsed) of each methods/line of code. I heard ...
5
votes
3answers
250 views

Do ReSharper and VSCommands play well together?

I just saw the VSCommands extension and it has some pretty nifty features. However I'm currently running ReSharper 5. Will there be any undesirable interactions between these two extensions?
5
votes
3answers
202 views

How do you develop Visual Studio Add-Ins?

I have a vague idea Visual Studio allows you to run a second sandboxed instance where the add-in is being in fact loaded. That'd allow you to debug your add-in code and such. Is this effectively ...
5
votes
1answer
158 views

Is there a free Visual studio add-on to generate try/catch blocks from a method that documents exceptions?

Is there a free Visual studio add-on to automatically generate try/catch blocks from a method that documents exceptions ?
5
votes
4answers
968 views

which one to choose? DXCore, Resharper or VSX?

I want to write a visual studio addon to do some code modifications for me (like some specific refactoring). I was wondering which one of these tools should I use and why? we have licenses for ...
4
votes
1answer
143 views

Which VisualStudio Add-in with Mercurial?

I'm looking for a Visual Studio (2010) Add-in for Mercurial. Currently, I've identified 3 potentials candidates : VisualHg http://visualhg.codeplex.com Mercurial Toolbar : ...
4
votes
1answer
158 views

Performance of changing Visual Studio colors with custom add-in

I'm creating an add-in for Visual Studio 2008 that will allow me to switch between color schemes with a hotkey. I got it to successfully load a color scheme and apply it, but it's very slow. Here's ...
4
votes
3answers
309 views

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 ...
4
votes
2answers
390 views

C# structural highlighting in Visual Studio

Is there any way to make code blocks highlighting/collapsing in Resharper ? In CodeRush it is called "structural highlighting" feature: Or maybe other Visual Studio 2010 add-on(preferably free) ...
4
votes
1answer
204 views

VSTS2010 Addin Development - Check-in hooks

I've been tipping my toes in Visual Studio Add-In development. I've read some of the tutorials online, and studied some of the sample code provided. Now I actually want to perform custom actions ...
4
votes
2answers
4k views

Visual Studio Add-In - adding a context menu item to solution-explorer

I'm developing my first add-in for Visual studio and we need to add a context menu item to the solution explorer, that shows up for particular file types only (in our case - ".resx"). I've been ...
4
votes
2answers
269 views

Selling Software for Windows?

Are there any "App Stores" or Software Marketplaces that allow developers to submit their Windows Software for sale to the general public? Kind of like the Apple app store, but for windows apps? Also, ...
4
votes
4answers
337 views

How to strip out robo-comments and #region from C#?

I've got some code I'm maintaining that has a good deal of machine generated comments and machine generated regions. (or created by a particularly misled developer) These are comments exclusively ...
3
votes
1answer
319 views

How do I extend the project properties screen in Visual Studio?

When u view a project properties in Visual Studio u get a number of tabs. The standard ones are "Application", "Build", "Build Events" etc. It is also possible to add custom tabs. For example view ...
3
votes
4answers
1k views

Best spellchecker addin to VS2010

I'm looking good (preferably free) add-in to Visual Studio 2010 which is able to check spelling of my code (must analyse strings and comments, nice to have methods/fields names as well) Can you ...
3
votes
2answers
180 views

How to get programmatically the information displayed by Quick Info in Visual Studio

I searched without succes a method to get from my C# addin visual studio extension what displayed in the Quick Info when the mouse is moved over some code element. I hope that there's an elegant way ...
3
votes
1answer
152 views

Create a new top-level menu in Visual Studio

We have an add in for VS that currently is launched from the tools menu, the add-in consists of a a UI offering the user a few option buttons, which I now want to convert to a top-level menu that ...
3
votes
2answers
338 views

How to block on a OpenFile in a Visual Studio addin

I have a Visual Studio 2008 addin that when I press a certain hotkey, it opens a specific file (different based on the context of the hotkey) and then searches that file for a specific string (again, ...
3
votes
1answer
282 views

Visual Studio 2010 extension get selected text

I'm writing my own extension. I've created a toolbar button. The template I used was "Visual Studio Package" and there was an option during the wizard to create a command button (or something like ...
3
votes
1answer
88 views

Is there a way in VS2008 (c#) to see all the possible exception types that can originate from a method call or even for an entire try-catch block?

Is there a way in VS2008 IDE for c# to see all the possible exception types that can possibly originate from a method call or even for an entire try-catch block? I know that intellisense or the ...
3
votes
3answers
246 views

What is this dashed line called that aligns function blocks in my IDE?

The SPE IDE that I use for my Python code uses this "visual cue" that looks like a vertical dashed line for alignment of (what I would call) function blocks. How can I get this option in Visual ...
3
votes
1answer
596 views

How would I retreive the fully qualified name of an identifier in a VS macro?

I'm trying to resolve the fully qualified name of a c# identifier at a certain point (cursor) of a code window, using a Macro (or even an Add-in) in Visual Studio 2008. For example, if the cursor is ...
3
votes
1answer
214 views

Including More Database Connection Options in a Visual Studio Isolated Shell Application?

When starting up an isolated mode visual studio shell application, the only databases available in the Tools->Connect to Database are Access, SQL Compact, and SQL Server Database File. Is there a ...
3
votes
2answers
6k views

Visual Studio 2008 Plug-in / Add-in development - Getting Started

hey guys, in relation to this stackoverflow question, how would I go about creating my own Visual Studio 2008 plug-in. I've checked the Visual Studio Developer Centre on MSDN, but the amount of info ...
3
votes
3answers
2k views

Visual Studio add-in API resources

Where can I find examples and API information, besides the MSDN, on creating add-ins for Visual Studio .net 2008?
3
votes
1answer
2k views

Visual Studio Addin - 1. How to Add a context menu? 2. How to get caret position

I'm writing a (very) simple Visual Studio addin. Two things that would make it work nicer are: A context menu. Knowing the caret position in the current document (so I can inject text at that ...
3
votes
2answers
1k views

How to find and delete registry entries in Wix

I am trying to write a Wix3 install for a visual studio add-in. I have it just about there, but I need reset the plugin by deleting a registry entry. Specifically any value starting with ...
3
votes
2answers
2k views

Visual studio addin - finding current solution folder path

I have an add-in loaded, and a solution loaded, how would I find the folder path of that solution programmatically in C# in my addin?
3
votes
3answers
3k views

What is the easiest way to add a Visual Studio 2008 Context Menu Item?

I would like to add a custom menu item when you right-click a certain file extension in Visual Studio. There seem to be some helper open source projects to accomplish this, but I'd like to ask if ...
2
votes
1answer
23 views

Visual Studio Addin - Changing project references after project load without “really” changing them

So our build system and source control system is from Perforce, which is a piece of poopers. We want to change reference to dlls in the project to some other location, for example, current reference ...
2
votes
1answer
67 views

Making tool window show automatically on VS load

In my Visual Studio extensibility project, I'm attempting to make my tool window visible upon launch after package installation. The dotneteers describe a way of doing this that involves adding the ...
2
votes
1answer
71 views

How to distribute/deploy a Visual Studio Add-in

I created my own Add-in with Visual Studio 2010. This Add-in is loaded at the startup of Visual Studio and it adds an entry in the Tools menu. The action of the Add-in is executing by clicking on its ...
2
votes
1answer
54 views

Create a VS2010 Addin to collapse every methods of my active document

I'm looking for the source code to collapse every methods of my active document using the VS2010 Addin. For the moment I parse the text content of the document trying to match if the line is a method ...
2
votes
1answer
82 views

Custom reference types

It's always been possible to add references for your project in Visual Studio. These show up under the special "References" folder in the solution explorer. You can also add service references, which ...
2
votes
1answer
121 views

Visual Studio 2008 addin copies and renames form files, gets duplicate members errors despite rename

I have a VB.NET project in Visual Studio 2008 that I created a specialized addin for. The addin prompts the user to select a database table, takes a template form class's files, copies them to another ...

1 2 3 4 5