Questions tagged [visual-studio-addins]

Add-ins extend Microsoft Visual Studio using the automation model (EnvDTE). Removed in Visual Studio 2015.

452 questions
11
votes
3 answers

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?
Martin Doms
  • 8,598
  • 11
  • 43
  • 60
11
votes
4 answers

Event on Visual Studio project creation

I want to add functionality when the user creates project \ solution in Visual Studio 2010\2012. i.e. I need to perform C# code when a new project is created. I googled a lot but didn't find any event which is fired on\after project creation. Is…
10
votes
2 answers

DTE2 events don't fire

While trying to develop my first VS Addin, I am having issues in firing DTE2 events. Basically, the DocumentOpened and LineChanged events don't fire for some reason. What important part did I miss? namespace TestAddin { public class Connect :…
10
votes
4 answers

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 advice any?
Maciej
  • 10,423
  • 17
  • 64
  • 97
10
votes
5 answers

Can't debug Visual Studio addin

Question says it all. I'm trying to write a Visual Studio addin (2012), and the experimental instance always launches without running anything in the addin. No breakpoints are hit in the main instance, nor does the addin get loaded by the…
gzak
  • 3,908
  • 6
  • 33
  • 56
9
votes
3 answers

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?
Tom J Nowell
  • 9,588
  • 17
  • 63
  • 91
9
votes
3 answers

Nuget Feed Address

somehow my VS does point to the wrong feed ... what is the feed address ... not easy to find
mbr
  • 303
  • 1
  • 4
  • 14
9
votes
3 answers

Is there any tab manager for visual studio?

It's common for me to have 20+ files opened in Visual Studio (I use VS 2008 now, but we will migrate to VS 2010, soon.). Is there any add-in which could help organize actively opened files? I mean something like Firefox colorful tabs or a…
9
votes
2 answers

Install Qt addin for Visual Studio from Qt SDK package manager

I can't find where to install the Qt addin for Visual Studio from the package manager that comes with Qt SDK. Does the addin come with the module "Desktop Qt 4.8.1 - MSVC 2010"?
sashoalm
  • 75,001
  • 122
  • 434
  • 781
9
votes
1 answer

A way to take an object in the watch window and "Script" it

I have a scenario where I have a fairly complex object that I load from a database. That object has several nested objects. While I am debugging I find an instance of this object that I would like to use in a unit test. Right now I have to create…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
8
votes
3 answers

Tools to monitor performance of C# methods

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 something that a tool will help us for this task which can…
Sreekumar P
  • 5,900
  • 11
  • 57
  • 82
8
votes
1 answer

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 googling for 2 days now, unable to find any tutorials…
Alex from Jitbit
  • 53,710
  • 19
  • 160
  • 149
7
votes
2 answers

How to write an add-in to change text color in Visual Studio editor?

After searching for a long time for a simple way of changing the text color of a #region directive in Visual Studio, I've concluded there is no easy way of doing so. I know how to change the #region statement color, and how to change the collapsed…
g t
  • 7,287
  • 7
  • 50
  • 85
7
votes
2 answers

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

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 is overwhelming. There are loads of project types, and I…
andy
  • 8,775
  • 13
  • 77
  • 122
7
votes
2 answers

From a visual studio package (VSIX) how do I detect a solution or project build?

From a visual studio package (VSIX) how do I detect a solution or project build?
Simon
  • 33,714
  • 21
  • 133
  • 202
1
2
3
30 31