Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
17 views

I attempted to intercept key combinations using IOleCommandTarget for commands within VSConstants.VSStd2KCmdID. I tried BACKTAB, but it doesn't work, even though TAB can be intercepted. I suspect that ...
KGS's user avatar
  • 1
0 votes
0 answers
33 views

So I have a folder that I would like to convert into a template so that I can quickly create skeletons for apps I want to build in the future. I have the following folder structure: App |-- web (...
Bardicer's user avatar
  • 1,488
0 votes
1 answer
97 views

I want to install Vscode Extensions offline expecially Remote-SSH. I searched remote-ssh .vsix file in marketplace but I did not see Download Extension tab. This tab exist in old explanation videos in ...
123 456's user avatar
  • 23
0 votes
0 answers
45 views

I'm working on my first Visual Studio extension (VSIX). I have the first version published. It is working as expected in local debug (Visual Studio Pro) and deployed for Visual Studio community. For ...
Jonathan's user avatar
0 votes
0 answers
28 views

I used diagnostic Api for finding compilation errors. It works well in debug mode but after creating .VSIX it is not working. Can Any one help me ? const diagnostics = vscode.languages.getDiagnostics()...
Pooja Hy's user avatar
0 votes
0 answers
199 views

Got the VSIX package signed using the sign cli mentioned here Now, how can I verify the signature? sign.exe cannot do the verification. My sign operation passed without errors. I want to confirm it is ...
user29992402's user avatar
1 vote
2 answers
58 views

Context Hi there, I am developing a VS Extension, it is just a button which opens a view where you can configure the creation of a custom Azure Function which actually includes Folders, subfolders, ...
FrankOfTheScience's user avatar
0 votes
1 answer
69 views

I'm trying to create a VS extension for working with solution files. Looked into some tutorials and hit simple but annoying issue. I am trying to get solution projects and it should be done with var ...
maximelian1986's user avatar
1 vote
1 answer
184 views

I have a code signing certificate on a YubiKey (YubiKey 5C NFC FIPS, PIV Authentication on Slot 9a), in line with the new requirements for code signing certs. I need to sign my VSIX archive for ...
GrantTheAnt's user avatar
0 votes
0 answers
37 views

I'm working with this link at Microsoft how-to-use-wizards-with-project-templates The first step/section I'm successful. I can create a Solution with two Projects, it builds and I see my new custom ...
Ross Youngblood's user avatar
0 votes
1 answer
108 views

Setup: offline/isolated visual studio 2019 pro instance on windows server 2019. previously, VS worked fine, and i needed to modify an RDLC report in VS. i tried to install Microsoft.RdlcDesigner.vsix,...
guitarmaestro69's user avatar
1 vote
1 answer
93 views

How do I use System.Data.SQLite in a VSIX (Visual Studio extension) project? At runtime, I get the error: System.DllNotFoundException: 'Unable to load DLL 'SQLite.Interop.dll': The specified module ...
HelloWorld's user avatar
0 votes
2 answers
141 views

I am trying to create an extension that will add a custom button to the Visual Studio 2022 Team Explorer window. On clicking the button I want to do some operations in the Version Control. I built ...
ramsankar184's user avatar
1 vote
1 answer
110 views

I have a VS extension with a custom "Code Map" tool window. It displays specific code elements in a tree view control. The tree view nodes support navigation to symbol definition on a double ...
SENya's user avatar
  • 1,492
0 votes
0 answers
106 views

I need to create a VSIX file to register my C# WinForm controls in the Toolbox so that other developers can use my extension. I’ve already written the library, and it contains UserControls with the ...
Zoi Lisoi's user avatar
0 votes
1 answer
79 views

I call a language server from an extension for VS2022. This was created using Omnisharp.Extensions.LanguageServer 0.19.9. For the call I use the (currently) experimental class LanguageServerProvider ...
Harald Hoyer's user avatar
1 vote
0 answers
154 views

My goal is to create an editor that mirrors the functionality of the standard Visual Studio text editor, including Syntax error underlining, Syntax highlighting, and Contencutal right-click options (e....
Woogie22's user avatar
0 votes
0 answers
76 views

I'm creating my own Microsoft Visual Studio 2022 Extension (Community VSIX Project), which adds a new emulator to Visual Studio Projects' development environments. Technically this means adding new ...
DoctorThumb's user avatar
0 votes
1 answer
223 views

I am creating own Microsoft Visual Studio 2022 Extension (Community VSIX Project), but currently I'm dyiing after couple of hours searching and testing different ways to do this very annoying stuff, ...
DoctorThumb's user avatar
1 vote
0 answers
36 views

I create a VSIX Project with usage of an external compiler and want to add F1. I'm able to get the F2 key and so on, but the F1 key doesn't work. public partial class OutputWindowControl : ...
plastes.de's user avatar
0 votes
0 answers
60 views

I am developing a WPF Visual Studio 2022 extension. It contains a ToolWindowPane and a custom UserControl I am developing. I would like to add the "standard" VS search control to my control. ...
NirMH's user avatar
  • 5,025
4 votes
0 answers
152 views

In my VSIX (VS Extension), I am reading the config properties' .Value of each of the projects in the currently loaded solution. For a C# (csproj) project: var configurationManager = project....
Chris Bordeman's user avatar
0 votes
1 answer
79 views

I have been racking my brain trying to figure out how to set the SQLConnection for a VSIX designed for SSMS. The closest I have come is to cast the active window to a SqlScriptEditorControl which has ...
Daniel Davis's user avatar
-1 votes
1 answer
87 views

I am trying to add file type validation in "add existing item" in solution explorer in visual studio experimental instance. If the selected file type is not valid, then it needs to display ...
Meghana Mekala's user avatar
2 votes
2 answers
3k views

I'm currently trying to create a new code analysis rule for Visual Studio 2022 so i followed this tutorial. When you follow the tutorial, you have to create a new Analyzer with Code Fix (.NET Standard)...
Alessandro's user avatar

1
2 3 4 5
26