1,265 questions
0
votes
0
answers
17
views
How to intercept keys not defined in VSStd2K, such as Shift+Tab?
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 ...
0
votes
0
answers
33
views
Create VSIX / VS template from folder structure without csproj file
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 (...
0
votes
1
answer
97
views
VsCode Extensions Download Problem for Offline Installation [duplicate]
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 ...
0
votes
0
answers
45
views
VSIX extension works in Community edition but not in Pro/Enterprise (even though manifest includes them)
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 ...
0
votes
0
answers
28
views
Visual Studio Diagnostic API Extension works while debugging but when I Install the VSIX it is not working
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()...
0
votes
0
answers
199
views
VSIX signature verification
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 ...
1
vote
2
answers
58
views
Visual Studio Extension - Can't put my button in ProjectNode/Add/ submenu
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, ...
0
votes
1
answer
69
views
Visual Studio extension for listing files
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 ...
1
vote
1
answer
184
views
How to sign a VSIX archive with a YubiKey cert?
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 ...
0
votes
0
answers
37
views
Visual Studio 2019 How do you create a Custom App Wizard with a query page?
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 ...
0
votes
1
answer
108
views
Failed vsix (for RDLC) has caused visual studio to not launch
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,...
1
vote
1
answer
93
views
How do I use System.Data.SQLite in a VSIX project?
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 ...
0
votes
2
answers
141
views
Extension for adding a Custom Button the Team Explorer of Visual Studio 2022
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 ...
1
vote
1
answer
110
views
How to navigate to a definition of a Symbol located in the external assembly
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 ...
0
votes
0
answers
106
views
Error "MSB4057: The target 'PkgdefProjectOutputGroup' does not exist" when building a VSIX project for C# WinForm Toolbox control
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 ...
0
votes
1
answer
79
views
Microsoft.VisualStudio.Extensibility.LanguageServer.LanguageServerProvider: Exception "No method by the name 'initialize' is found."
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 ...
1
vote
0
answers
154
views
How to Enable Full Syntax Features in a Custom Text Editor VS2022
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....
0
votes
0
answers
76
views
DIY Visual Studio Extension: Using Start and Start Without Debugging
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 ...
0
votes
1
answer
223
views
Adding Visual Studio Commands (Buttons) to specific locations
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, ...
1
vote
0
answers
36
views
I create a VSIX Project with usage of an external compiler and want to add F1
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 : ...
0
votes
0
answers
60
views
How to control the position of a tool window's search control?
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.
...
4
votes
0
answers
152
views
In VSIX, reading Configuration Properties of CSPROJ throws COMException (method or operation not implemented)
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....
0
votes
1
answer
79
views
How do you set the connection for the activewindow (EnvDTE.Window) in a VSIX extension?
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 ...
-1
votes
1
answer
87
views
How to add file type validation , when trying to add existing item in solution explorer of visual studio experimental instance?
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 ...
2
votes
2
answers
3k
views
Visual Studio 2022: Impossible to install a VSIX extension from 'Analyzer with Code Fix (.NET Standard)' project template
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)...