Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 1007 Bytes

DEVELOPMENT.md

File metadata and controls

31 lines (25 loc) · 1007 Bytes

Development

VS Code Docs - Publishing Extensions

Packaging (local .vsix file)

$ vsce package

Marketplace

Access token

Usually the previous access token has expired and thus a new one has to be created. To acquire a personal access token:

  1. sign in on marketplace.visualstudio.com.
  2. Click the profile link next to the "Sign out" link.
  3. Click the available Azure DevOps Organization.
  4. Click the "User settings" button in the top right corner and Select "Personal access tokens".
  5. Create a new access token according to VS Code's documentation
  6. Login via vsce using the newly created access token
    vsce login <publisher name>
    

Publishing

$ npm install -g vsce ovsx
$ vsce publish -p <token>
$ ovsx publish -p <token>