Questions tagged [visual-studio-extensions]

Products and Extensions for Visual Studio which help you get the most out of Visual Studio.

The Visual Studio Gallery provides quick access to tools, controls, and templates to help you get the most out of Visual Studio.

Microsoft also offers a tutorial, where you can gather basic informations on how to develop extensions yourself

1700 questions
17
votes
3 answers

Update Private Gallery atom such that VS shows that an extension update is available

I'm using a Visual Studio Private Gallery to publish a VSIX internal to my company. My VSIX shows up in the "Online" section of "Extensions and Updates" in Visual Studio 2012 and I can install it from there: However, once it's installed, I can't…
17
votes
2 answers

How to inspect / disassemble a Visual Studio Extension

I have a visual studio extension (.vsix) which I want to inspect and/or preferably disassemble as it contains some source code that I want to research. I am using Visual C# 2010 Express Edition, however I would like an external tool if such a thing…
Matthew Layton
  • 39,871
  • 52
  • 185
  • 313
16
votes
2 answers

Resetting Experimental instance of Visual Studio

I'm trying to develop extensions for Visual Studio and I'm going through some articles. One key point of VS extension development is to reset experimental instance of Visual Studio, which I am having problem with. For example, here is written that…
Michał Turczyn
  • 32,028
  • 14
  • 47
  • 69
16
votes
2 answers

Can't execute statement with VS Debugger Interop

I'm writing a debugger extension VSPackage in which I want to execute a statement in the debugged process when a breakpoint is hit. In my extension code I have this: void Initialize() { // ...standard vspackage init code omitted... …
16
votes
1 answer

Visual Studio Productivity Power Tools configuration settings

I'm trying to figure out where the Visual Studio Productivity Power Tools settings are stored. I recently moved to a new instance of visual studio and I've lost all of my Power Tools regex tab coloring settings. They are clearly not part of the…
farina
  • 3,486
  • 6
  • 32
  • 44
15
votes
3 answers

How to disable Visual Studio extension automatic updates in an unattended mode?

I can disable automatic extension update for a particular extension via the Extensions and Updates manager in Visual Studio. But what should I do when I want to disable automatic updates for extension FOO on all computers of my team in an unattended…
bahrep
  • 29,961
  • 12
  • 103
  • 150
15
votes
1 answer

How can I install an extension so that all users can access it?

Installing extensions in the last few versions of Visual Studio seems easy. However, as far as I understand, they are only installed for the user running the program. How can an administrator install an extension system-wide so that it is available…
Sam
  • 40,644
  • 36
  • 176
  • 219
15
votes
3 answers

Visual Studio Editor Extension Options Dialog

I have a simple Visual Studio extension that is built in a similar manner as the one presented in this walkthrough (using the IWpfTextViewCreationListener interface). The extension uses two colors that I'd like to make configurable. How can I define…
Cristian Lupascu
  • 39,078
  • 16
  • 100
  • 137
14
votes
1 answer

Access current code pane in Visual Studio Extension

Im writing a visual studio (2010) extension with a right click menu whilst in a code view. I want to be able to examine the current code from my menu item event handler but havent been able to find somewhere in the object model to do this. How do i…
undefined
  • 33,537
  • 22
  • 129
  • 198
14
votes
5 answers

Message in visual studio "This extension is scheduled for install"

I have downloaded RDLC extension from visual studio 2017 Tools -> "Extensions & Updates" successfully & its showing me message as "This extension is scheduled for install". So I have restarted my VS2017 (VS Professional 2017 version 15.8.6 ) but…
Sushil Jadhav
  • 2,217
  • 2
  • 19
  • 33
14
votes
2 answers

Visual Studio 2017 Color Theme Editor

I used Visual Studio 2015 Color Theme Editor and now I would like to use this extension for Visual Studio 2017. On the other hand, according to The Visual Studio Blog, it has not been updated yet. So, I am wondering if it is possible to use this…
14
votes
3 answers

How to extend CodeLens

I'm currently writing a tool to help maintain unit and integration tests (coded tests). I've started extending Visual Studio to make the developer experience nicer, which got me to notice the new-ish CodeLens feature. The stuff I'm currently…
MetaFight
  • 1,295
  • 14
  • 30
13
votes
1 answer

Install-Package : The remote name could not be resolved: 'packages.nuget.org'

For no reason, I have been getting this error message for a week or so; PM> Install-Package Elmah Install-Package : The remote name could not be resolved: 'packages.nuget.org' At line:1 char:16 + Install-Package <<<< Elmah + CategoryInfo…
tugberk
  • 57,477
  • 67
  • 243
  • 335
13
votes
6 answers

Extension for Visual studio unknown error - unable to push or fetch anything

I have an error when I try to push anything to my bitbucket repository via Git extension for visual studio: Error encountered while pushing branch to the remote repository: Git failed with a fatal error. HttpRequestException encountered. An error…
User987
  • 3,663
  • 15
  • 54
  • 115
13
votes
1 answer

Now that VS2015 is out, what's a supported way to modify Roslyn, with debugging support?

The Context We'd like to modify Roslyn and be able to debug it while compiling with it. Pre-VS2015 release, doing this was a painful process that didn't flow very well. Our goal is to develop a C# variant compiler. The Dream Pre-VS2015, executing…
Mart
  • 167
  • 6