-
Notifications
You must be signed in to change notification settings - Fork 911
Extension Authoring
If you're interested in extending SQL Operation Studio, you can do that by creating your own extension and publish it to SQL Ops extension gallery.
Writing an Extension
Prerequisites
To develop an extension you need Node.js installed and available in your $PATH. Node.js includes npm, the Node.js Package Manager, which will be used to install the extension generator.
To start your new extension, you can use the SQL Operations Studio Extension generator. The Yeoman extension generator makes it very easy to create simple extension projects. To Launch the generator, type the following in a command prompt:
npm install -g yo
yo sqlops
Extensibility References
Please see Extensibility References to learn about SQL Operations Studio Extensibility API. You can also see examples of how to use the API in existing samples.
Debugging Extension
You can debug your new extension using Visual Studio Code extension SQL Operations Studio Debug.
Steps
- Open your extension with Visual Studio Code
- Install SQL Operations Studio Debug extension
- Press F5 or click the Debug icon and click Start
- A new instance of SQL Operations Studio will start in a special mode (Extension Development Host) and this new instance is now aware of your extension.
Creating Extension Package
After writing your extension, you need to create a VSIX package to be able to install it in SQP Operations Studio. You can use vsce to create VSIX package.
npm install -g vsce
vsce package
Publishing the Extension
To publish your new extension to SQL Ops Studio
- Create a new GitHub issue (https://github.com/Microsoft/sqlopsstudio/issues)
- Specify the location of extension's package.json
- Specify the web page to download the vsix from
- Assign the new issue to llali Your extension will be reviewed and will be added to the extension gallery
Documentation
- Get Started
- Install Azure Data Studio
- Telemetry
- Microsoft Ready 2019 Lab
- MS Docs Overview
- Debug Trace Logging
- Troubleshoot Azure Authentication Issues
- FAQ
Contributing
- How to Contribute
- Developer Getting Started
- Submitting Bugs and Suggestions
- Localization
- Troubleshooting Build Issues
- Engineering FAQ
- How to update typings files
- Importing and using modules
- UI Guidelines
- Angular UI Guidelines
- Contributor License Agreement
- Azure Data Studio Tests
- Why is the Azure Data Studio license different than the repository license?
Tool Services
Extensibility Reference
- Getting Started
- Extensibility API
- Contribution Points
- Context Variables
- Servers and Data Explorer Tree Views
- Debugging with VS Code
- Extension Authoring
- Building multiple insight widgets
- Microsoft Ignite lab
- List of Extensions
- Replace sqlops namespace
Project Management