1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages/common/vsce.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

24 lines
509 B
Markdown

# vsce
> Extension manager for Visual Studio Code.
> More information: <https://github.com/microsoft/vscode-vsce>.
- List all the extensions created by a publisher:
`vsce list {{publisher}}`
- Publish an extension as major, minor or patch version:
`vsce publish {{major|minor|patch}}`
- Unpublish an extension:
`vsce unpublish {{extension_id}}`
- Package the current working directory as a `.vsix` file:
`vsce package`
- Show the metadata associated with an extension:
`vsce show {{extension_id}}`