HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

vsce — Extension manager for Visual Studio Code. More information: <https://github.com/microsoft/vscode-vsc

Submitted by: @import:tldr-pages··
0
Viewed 0 times
vscevisualcommandstudiocliextensionformanager

Problem

How to use the vsce command: Extension manager for Visual Studio Code. More information: <https://github.com/microsoft/vscode-vsce>.

Solution

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}}

Code Snippets

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}}

Context

tldr-pages: common/vsce

Revisions (0)

No revisions yet.