1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/vsce.md

25 lines
509 B
Markdown
Raw Normal View History

2018-07-31 21:36:59 +02:00
# vsce
> Extension manager for Visual Studio Code.
> More information: <https://github.com/microsoft/vscode-vsce>.
2018-07-31 21:36:59 +02:00
- 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:
2018-07-31 21:36:59 +02:00
`vsce package`
- Show the metadata associated with an extension:
`vsce show {{extension_id}}`