Community.VisualStudio.Toolkit
Community.VisualStudio.Toolkit copied to clipboard
Making it easier to write Visual Studio extensions
Hello, I want to write an extension that handles the case of when a file having any filename extension is submitted to the Visual Studio open file dialog. I have...
 **Figure 1.** I can't find these templates in my **Create New Project** dialog box.  **Figure 2.** Searching my **Create New Project** dialog box on the text `(Community)` yields...
You can change the color for the Brace Matching, because there is a TextMarketTagType property in the base class (should that not be TextMarke**r**TagType). I have just created a pull...
Mads, I am trying to update my LinqLanguageEditor2022 Extension to use the new .Net Interactive Notebook. I started with trying to add the file type to the FileTypes.json in HelpExplorer...
### Steps to reproduce 1. Create a new project using the _VSIX Project w/Command (Community)_ template. 2. Uninstall the `Community.VisualStudio.Toolkit.17` package. 3. Install the `Community.VisualStudio.Toolkit.16` package. 4. In the `MyCommand`...
In an extension project targeting VS2019 that references `Community.VisualStudio.Toolkit.16` , I get the following warning ```text The version of Newtonsoft.Json cannot be greater than 9.0.1, but version 12.0.2 is currently...
I enjoyed the recent [Hacking Visual Studio episode](https://www.youtube.com/watch?v=c8IwO2ACi6k), which showed some of the ways that it is now easier to create an extension to support a [new] language (or file...
Frequently receive the following error when debugging VSIX. Only resolution is to reset the experimental instance. However, it then occurs after some unknown circumstances. ``` System.InvalidCastException: Unable to cast object...
Currently the only way to get an existing output pane is [via its GUID](https://github.com/VsixCommunity/Community.VisualStudio.Toolkit/blob/master/src/toolkit/Community.VisualStudio.Toolkit.Shared/Helpers/OutputWindowPane.cs#L124-L163). However, in some scenarios the GUID might be unknown to the caller or just storing the...
Is there documentation someplace that says the best way to do logging in Visual Studio? Currently we are using this library to create an VS Output window pane and then...