Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to 'extract' a .vsix file? (i.e. not install)

Title says it all: How can one 'extract' a .vsix file?

I was following a tutorial and states this as step, but I didn't understand it and it wasn't easily googleable.

like image 595
JBSnorro Avatar asked Feb 09 '17 05:02

JBSnorro


2 Answers

Rename the file extension to .zip and voila, just unpack it like a regular zip

like image 183
JBSnorro Avatar answered Feb 21 '23 05:02

JBSnorro


You can download vsix file 2way. But vsix file downloaded by first site can't extract linux unizp. you need to download second site.

first one

https://marketplace.visualstudio.com/_apis/public/gallery/publishers/${publisher}/vsextensions/${extensionname}/${version}/vspackage

second one

https://${publisher}.gallery.vsassets.io/_apis/public/gallery/publisher/${publisher}/extension/${extensionname}/${version}/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage

If CSS Peak

${publisher} = pranaygp

${extensionname} = vscode-css-peek

${version} = 3.0.2

like image 29
S.Hashiba Avatar answered Feb 21 '23 07:02

S.Hashiba