From 25a028a8b335103f8cf05e8bb5a20fde33ff4380 Mon Sep 17 00:00:00 2001 From: "Jan T. Sott" Date: Tue, 31 Jul 2018 21:36:59 +0200 Subject: [PATCH] vsce: add page (#2229) --- pages/common/vsce.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/common/vsce.md diff --git a/pages/common/vsce.md b/pages/common/vsce.md new file mode 100644 index 000000000..726ebcffa --- /dev/null +++ b/pages/common/vsce.md @@ -0,0 +1,23 @@ +# vsce + +> Extension manager for Visual Studio Code. + +- 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 .vsix file: + +`vsce package` + +- Show the metadata associated with an extension: + +`vsce show {{extension_id}}`