I'm trying to test the install plugin feature in the latest pre-release 0.10.7 but it doesn't show up.

I just cloned the repo and follow the steps to run vscode. I'm using Windows 8.1 x64
Am I missing something?
If you build VS Code from source then the product is configured without some features like the extensins gallery. Pls see this comment for more background on this https://github.com/Microsoft/vscode/issues/60#issuecomment-161792005
If you install the published Insider version then the command is there. Pls see
https://blogs.msdn.microsoft.com/vscode/2016/02/01/introducing-insiders-builds/
I've done some digging and figured out how to install an extension manually. There may be a better way to do this, but can't find any documentation on it:
publisherName, extensionName and/or extensionId.assetUri for the desired version./Microsoft.VisualStudio.Services.VSIXPackage?install=true to the assetUri. (e.g. https://ziyasal.gallery.vsassets.io/_apis/public/gallery/publisher/ziyasal/extension/vscode-open-in-github/0.8.0/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage?install=true)Microsoft.VisualStudio.Services.VSIXPackage package's file extension to Microsoft.VisualStudio.Services.vsix.code Microsoft.VisualStudio.Services.vsix as described in the installation instructions.EDIT: Aha, yes, one more important thing: I can't speak for anyone here, but I guess once you start using MS's branded services, e.g. loading extensions from the gallery store, you agree to their terms of use. I'd imagine that installing these extensions also applies under the proprietary Visual Studio Code license, as well as any individual license contained in the extension.
@egamma Can you please elaborate, is it possible to build VS Code with the extension gallery or is that a closed source component?
@jgillich this has already been elaborated here https://github.com/Microsoft/vscode/issues/60#issuecomment-161792005, hasn;t it?
@egamma Well, given how vital extensions are to a editor like VS Code, I couldn't quite believe what I read and had to ask for confirmation.
@jgillich I think there has been a slight misunderstanding: If you read one of the following comments in #60, it says that you just need to modify a configuration file for it to work.
I've just added 3 lines to the configuration file and that enabled the extension manager!
@mucaho Seems so, thanks! Now I'm relieved.
Url resultante : https://ms-vscode.gallery.vsassets.io/_apis/public/gallery/publisher/ms-vscode/extension/csharp/1.4.1/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage?install=true
)
Just to make it simple:
product.json file"extensionsGallery": {
"serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
"cacheUrl": "https://vscode.blob.core.windows.net/gallery/index",
"itemUrl": "https://marketplace.visualstudio.com/items"
}
Most helpful comment
I've done some digging and figured out how to install an extension manually. There may be a better way to do this, but can't find any documentation on it:
Search for the desired extension, e.g. by
publisherName,extensionNameand/orextensionId.assetUrifor the desiredversion./Microsoft.VisualStudio.Services.VSIXPackage?install=trueto theassetUri. (e.g. https://ziyasal.gallery.vsassets.io/_apis/public/gallery/publisher/ziyasal/extension/vscode-open-in-github/0.8.0/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage?install=true)Microsoft.VisualStudio.Services.VSIXPackagepackage's file extension toMicrosoft.VisualStudio.Services.vsix.code Microsoft.VisualStudio.Services.vsixas described in the installation instructions.EDIT: Aha, yes, one more important thing: I can't speak for anyone here, but I guess once you start using MS's branded services, e.g. loading extensions from the gallery store, you agree to their terms of use. I'd imagine that installing these extensions also applies under the proprietary Visual Studio Code license, as well as any individual license contained in the extension.