visual-studio-extensions

Is there a keyboard shortcut to move the cursor between methods in Visual Studio 2010?

放肆的年华 提交于 2019-11-27 02:29:28
问题 Is there any keyboard shortcut to move the cursor between methods in Visual Studio? Is there any plugins that can do the same job? All the time when I program, I want to go at the end of the current method and if I could have a shortcut that can move the cursor at the beginning of the next method and then just have to type a couple of up arrow to be where I want would be fantastic. Thank you. 回答1: Visual Studio doesn't have such a function, but JetBrains' ReSharper does. At least is the only

How to package a .NET library that targets the Universal Windows Platform and depends on Visual Studio extension SDKs?

。_饼干妹妹 提交于 2019-11-26 23:16:50
问题 How do I package a Universal Windows Platform library that depends on Visual Studio extension SDKs such as the Microsoft Player Framework? Specifically, I want users of my library to be able to use it immediately after pressing the Install button in NuGet, without having to manually add the extension SDKs to their projects. Assuming, of course, that the appropriate extension SDKs are actually installed. This is a series of questions and answers that document my findings on the topic of modern

Custom Intellisense Extension

一曲冷凌霜 提交于 2019-11-26 22:06:16
I am wanting to write an addition to intellisense in Visual Studio. Is it possible to extend at all, from my research I haven't found any samples or documentation on intellisense extensions. How can I get intellisense to show a simple HelloWorld message like the following (where hello world is added at run time to the intellisense for String): So in Visual Studio 2010 and later, the extensibility APIs you want to at are under the Microsoft.VisualStudio.Languages.IntelliSense namespace. At a high level, you want to MEF export a ICompletionSourceProvider which will provide the items you need.

Restrictions on installing extensions or add-ins in Visual Studio 2010 Express

冷暖自知 提交于 2019-11-26 17:57:30
I installed MSVC++ 2010 Express and trying to figure which extensions (vsix) are available to install. There are some extensions in the Extension Manager (section Online Gallery ). All of them from Visual Studio Gallery . To be sure I installed some extension . It, therefore, cannot be said that the express editions of Visual Studio do not support installing Extensions or Add-Ins. At first I decided that Visual Studio Gallery is the place for allowed extensions. I downloaded from there PowerConsole extension and tried to install it. However, I got message box with following text: Visual Studio

How to debug Visual Studio extensions

最后都变了- 提交于 2019-11-26 10:07:07
问题 I\'m just writing a VSIX extension for Visual Studio 2010 and can\'t figure out how to debug it. One obvious method is to output messages. Extension template uses Trace.WriteLine() . But where to find it\'s output? 回答1: Visual Studio Extensions can be debugged like any other application. You just need to setup the debug experience to launch devenv with the loaded extension. Try the following Right click on the project and select Properties Go to the Debug Tab Click on the radio button for

Restrictions on installing extensions or add-ins in Visual Studio 2010 Express

巧了我就是萌 提交于 2019-11-26 05:39:41
问题 I installed MSVC++ 2010 Express and trying to figure which extensions (vsix) are available to install. There are some extensions in the Extension Manager (section Online Gallery ). All of them from Visual Studio Gallery. To be sure I installed some extension. It, therefore, cannot be said that the express editions of Visual Studio do not support installing Extensions or Add-Ins. At first I decided that Visual Studio Gallery is the place for allowed extensions. I downloaded from there