Extension manager suggestions: How can I remove some extensions from the suggestions ?
Hello, For example I don't like to see resharper any time when I open the extension manager. I would like to have a possibility to remove it from my suggestion list. Thanks.
How to add my custom named "Help" setting under Options->Envrionment when using TOOL->Import and Export Settings
I was able to add my custom setting "Help" under TOOLS->Options->Environment with this code [ProvideOptionPageAttribute(typeof(AcfHelpProviderPage), "Environment", "Help", 0, 113, true)] Where 113 value is Help But I…
Language Server (LSP) not called for language features when used along with a Language Service
We have a Visual Studio extension that implements a custom code editor and a legacy Language Service. Code editor is opened using IVSUIShell.CreateDocumentWindow. Language Service is associated with this editor using…
FileExtensionRegistryService returns me UNKNOWN content type for .cs and .txt
Am trying to understand IFileExtensionRegistryService in the Visual Studio Extension development scenario. I try to get content types as follows. var componentModel = (IComponentModel)Package.GetGlobalService(serviceType: typeof(SComponentModel)); var…
Validate Breakpoints location with MEF Language Service
We have a Visual Studio extension that implements a legacy Language Service. We are trying to get rid of this and implement the language service in MEF now. There is a way to validate breakpoints location in legacy language service -…
Showing an error while try to install the software.
Hello Team, Required help on resolving my issue, Currently I'm using Visual Studio 2022 Professional, and I required to generate the sdf file for that I have added the extension "SQLite/SQL Server Compact Toolbox" from Visual Studio, the…
What is BaseDefinition and ContentType in visual studio extension development
I have been looking into this example Walkthrough: Customize the text view In this example, the content type is text as shown…
how to dock a tool window when it open for the first time in vsix
I have created tool window in VSIX, now i need to dock that when it open for the first time as per the desired position we set and next time if user moves the tool window it should persist with that position as visual studio doing already. i can dock the…
How to fix access issues when trying to access VS code Via Azure Ai Studio project
Hi, We are facing an issue when access the Azure AI Studio Compute from a windows machine. When the compute is ready and we try to access it via VScode Desktop we are seeing the following error message: Screenshot 2024-11-21 at 17.53.45.png Here are…
How to debug maui ios in real device with free provisioning on mac vs code
I've already using xcode to deploy the native app to my device with this provisioning profile. Then I've modified the project config as below <PropertyGroup Condition="'$(TargetFramework)'=='net8.0-ios'"> …
How to add a keyboard shortcut on a Visual Studio extension?
I'm trying to learn how to create a keyboard shortcut on a Visual Studio 2022 extension. I would like to get the shortcut visible and editable at Tools > Options > Environment > Keyboard Steps i tried: Addded: …
How to Access and Reconstruct HBITMAP Data from a Debugged Process?
I am developing a Visual Studio 2022 extension to extract HBITMAP objects from the memory of a debugged process for analysis. Ideally, I want to access and reconstruct (when necessary) the raw bitmap data directly, without needing to convert each…
Visual Studio 2022 Analysis Services Extension on Windows 11 ARM64 (Lenovo Snapdragon)
I recently purchased a Lenovo CoPilot+PC ARM64 Snapdragon Windows 11 computer. I keep getting an error when I try to install the Analysis Services Extension for Visual Studio 2022 (Microsoft.DataTools.AnalysisServices.vsix). Is there a workaround to be…
I have Visual Studio and installed Live Preview but no live preview option
It shows I have Live Preview installed but per instructions to click Live Preview from file right click or from "View" or anywhere else is not available to me. I restarted my pc. Didn't change anything. I uninstalled Live Preview and…
Breakpoints not shown when debugging from extension
I am working on a Visual Studio extension that implements a custom editor, language service and a debugger. When running the debugger, breakpoints set are not shown in editor margin. All other breakpoint functionality works fine - Breakpoints are…
Visual Studio extension to render clickable character before searched string
I'm trying to create a Visual Studio 2022 extension to render a clickable character before a specific searched string. On the following code its rendering the character before auto whenever it finds if (auto. I have been able to partially get it done,…
Theming of WPF dialog not working for all controls on the dialog
Hi, I need to change color/theme of all controls on WPF dialog whenever there is change of theme from VS2022 (i.e. Tools -> Options -> Color Theme ) I followed below MSDN…
How to set a VisualizerTargetType of type byte*?
I am trying to write a visualizer for VS2022. I managed to set it up for the byte[], but failing for the type byte*. the line new VisualizerTargetType("Byte* Visualizer", typeof(byte*)) gives me an compile time error. If I use byte[] instead,…
How to extend the Team Explorer Window of Visual Studio 2022
Hello, I am trying to create an extension which 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 had built that application using Visual Studio 2019 by…
Extension to detect when a string get hovered on the document
I'm trying to create a Visual Studio 2022 extension to detect whenever a specific string on a .cpp or .h file get hovered, the project atm have only two files. I have set a breakpoint on InitializeAsync of ImagePackage.cs, when i start debugging the…