Samples for building your own Visual Studio extensions
Перейти к файлу
Mads Kristensen 83759e1796
Merge pull request #255 from microsoft/dependabot/nuget/CodeLensOopSample/src/CodeLensOopProvider/System.Net.Http-4.3.4
Bump System.Net.Http from 4.3.3 to 4.3.4 in /CodeLensOopSample/src/CodeLensOopProvider
2022-08-02 11:03:46 -07:00
Advanced_Visualizer_Scenarios/EvaluationTimeoutSample WPF Projects cannot be SDK-Style in VS 2017 2022-08-01 15:59:19 -07:00
ArchivedSamples
AsyncCompletion Remove use of myget feed from AsyncCompletionSample project 2022-04-04 11:00:36 -07:00
AsyncPackageMigration
AsyncQuickInfo
AsyncToolWindow
Backwards_Compatible_AsyncPackage_2013
Backwards_Compatible_Editor_Command
Caret_Fish_Eye
CodeLensOopSample Bump System.Net.Http in /CodeLensOopSample/src/CodeLensOopProvider 2022-08-02 17:07:12 +00:00
Code_Sweep
Combo_Box
Completion_Tooltip_Customization
CustomCommand
Diff_Classifier
Editor_With_Toolbox
ErrorList
Highlight_Word
Intra-text_Adornment
LanguageServerProtocol Fixed error 2022-04-04 11:17:28 -07:00
LightBulb
MSDNSearch
Menu_And_Commands
Ook_Language_Integration
Open_Folder_Extensibility Updating Open Folder sample to work in VS2019. 2021-09-24 16:55:49 -07:00
OperationProgress
Options
ProtocolHandler
Reference_Services
RunningDocumentTable(RDT)_Event_Explorer
SingleFileGenerator
SolutionLoadEvents
SqliteVisualizer
TextmateGrammar
Todo_Classification
Typing_Speed_Meter
VisibilityConstraints
WPFDesigner_XML
Windows_Forms_Controls_Installer
.gitattributes
.gitignore
ISSUE_TEMPLATE.md
LICENSE
NuGet.config
README.md
SECURITY.md Microsoft mandatory file 2022-08-02 17:06:37 +00:00
Visual Studio Code.lnk
appveyor.yml
build.ps1

README.md

Visual Studio Extensibility Samples

Join the chat at https://gitter.im/Microsoft/extendvs Build status

These samples demonstrate how to customize the appearance and behavior of the Visual Studio IDE and editor. The following are some of the ways in which you can extend Visual Studio:

  • Add commands, buttons, menus, and other UI elements to the IDE
  • Add tool windows for new functionality
  • Add support in Visual Studio for new programming languages
  • Add refactoring or language analyzers to fix and improve code
  • Add a custom project type or new project or item templates

If you've never written a Visual Studio extension before, we've got some great resources to get started.

Getting started

  1. Clone the repo to download all samples (How to)

    git clone https://github.com/Microsoft/VSSDK-Extensibility-Samples.git

  2. Read the readme included with each sample and try it in Visual Studio

Other extensibility samples

  • If you're building XAML controls for UWP that are deployed as NuGet packages, you can add design-time support so that they automatically appear in the toolbox when they are referenced. This sample is in the NuGet repo.

  • We have separate repositories and documentation for writing extensions for other members of the Visual Studio family:

Other useful resources

  • Publish your completed extension to the Visual Studio Marketplace, which provides a convenient place for developers to find and install your extension.

  • Join the Visual Studio Partner Program for free to get access to dedicated resources to support you as an extension publisher.

  • For details on how to create user experiences that are seamless and consistent within the IDE, visit the Visual Studio User Experience Guidelines. You will also find information about the common user models and interaction patterns that are used and how you can utilize them as well.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Thank you for your support for Visual Studio - we're excited to see what extensions you build!