Internet Explorer is no longer supported. Many things will still work, but your experience will be degraded and some things won't function. Please use a modern browser such as Edge, Chrome, or Firefox.

HOWTO: Create a Private Extension Gallery for Visual Studio and Visual Studio Code

view on GitHub

By using ProGet, teams can take extension packages from Microsoft’s public Visual Studio Extension repository, the Visual Studio Marketplace, and upload them to ProGet as packages, creating a feed that acts as a private extension gallery of curated packages that your team can access.

If the Visual Studio Extension feed is hosted internally, this will also allow your team to access the packages in an offline environment.

This article will run through configuring ProGet to create a feed that acts as a private Visual Studio Extension gallery for a team using either Visual Studio or Visual Studio Code to access and consume a curated selection of Visual Studio Extension packages. This configuration would also allow the feed to be used offline.

Step 1: Creating and Naming a New Feed

The first thing we need to do is create a "Visual Studio Extension" feed. We start by selecting "Feeds" and "Create New Feed".

Create New Feed

Next, we need to select "Visual Studio Extensions" as we will be using Visual Studio Extension packages.

Create Vsix Feed

From here, we name our feed, which we will call private-vsix in this example.

Name Feed

Finally, we select "Create Feed", which will create the feed, and redirect us to our private-vsix feed, which is currently empty and will be populated with packages later.

Feed Detail

Step 2: Set Permissions

There are many ways to configure security access controls for uses and groups in ProGet. In this example, we want to permit only administrators and network engineers to upload packages to the private-vsix feed, since they're trained to check the quality, licenses, and vulnerabilities of open-source packages. To ensure this rule, we'll set up a new permission. By default, only administrators have assigned permissions.

To start, we navigate to "Settings"> "Manage Security".

Manage Security

We then navigate to the "Tasks / Permissions" tab, listing the currently configured permissions, and select "add permission".

Tasks/Permissions

Next, we will fill out the following dialog to give the "Network Engineers" user group permission to "Manage Feed" for the private-vsix feed.

Permit Manage Feed

After saving these privileges, the task overview page looks like this:

Overview

Step 3: Upload Extensions as Packages to ProGet

Now we will populate our Visual Studio Extensions feed private-vsix with extensions. These can be downloaded from the Visual Studio Marketplace.

ProGet allows you to upload packages from a local source through various means. This guide will offer three options; using pgutil, through the UI, or by bulk uploading.

Option 1: Using Pgutil

You can use Inedo's pgutil tool to upload packages by running this command:

pgutil packages upload --feed=«vsix-feed-name» --input-file=«path-to-extension»

For example, to upload the package myExtension.vsix located in C:\visualstudio\extensions to the feed private-vsix you would enter:

pgutil packages upload --feed=private-vsix --input-file=C:\visualstudio\extensions\myExtension.vsix

pgutil will require some minor configuration before use.

Option 2: Through the UI

You can use the ProGet UI to upload packages. Navigate to "Feeds" > the private-vsix feed and select "Add Package" from the drop-down menu.

Add Package

Then select "Upload Package".

Upload Package

Finally, use the file browser to select the package and click "Upload File".

Upload File

Option 3: Bulk Package Upload

ProGet allows you to bulk upload extensions to your Visual Studio Extension feed.

Step 4.1: Adding the Feed to Visual Studio

To add a VSIX feed to Visual Studio, an additional extension gallery must be added. To do this, navigate to "Tools" > "Options" > "Environment" > "Extensions" and click the "Add" button under "Additional Extension Galleries". Fill in the name and set the URL to the API endpoint URL of the VSIX feed.

options

This allows you to install the extensions of your VSIX feed in addition to the extensions in the built-in galleries using the "Extension Manager" window, opened by navigating to "Extensions" > "Manage Extensions".

extensions

Managing Galleries with Registry Settings

To manage multiple machines or control access to extension galleries in Visual Studio, you can use a .pkgdef file. This allows you to add, prioritize, or disable galleries, including your private ProGet feed, by modifying registry settings. You can also disable public galleries or set your private feed to appear first.

Step 4.2: Adding Packages from a Feed to VS Code

Currently, Visual Studio Code does not support private galleries, despite there being a request for it that has been open since 2017. You can still upload extensions to a VSIX feed, but users will need to manually download them and then import them into their Visual Studio Code.

To download, navigate to a version of the package and select "Download Package"

download

Once the file is downloaded, in VS Code navigate to "Extensions" > "..." > "Install from VSIX" and then using the file browser to locate the .vsix VS Code extension locally.

install

Adding Custom Feed Instructions (Optional)

To provide developers using VS Code with the above guidance when using VS Code, you can add Custom Feed Instructions

To create custom feed instructions, navigate to your Visual Studio Extensions feed and select "Manage Feed".

manage feed

Then select "Create" under "Feed Usage Instructions".

Give the instructions a title and then enter them using MarkDown syntax. For the instructions given above, you can use this pre-written example:

Currently, Visual Studio Code does not support private galleries. To install extensions users will need to manually download them and then import them into their Visual Studio Code by following these steps:

1. Navigate to a version of a package
2. Select "Download Package"
3. In VS Code, navigate to "Extensions" > "..." > "Install from VSIX"
4. Using the file browser, locate the `.vsix` VS Code extension and select it.

After entering title and instructions, select "Save". The instructions will then be found by navigating to your Visual Studio Extensions feed, and selecting the title from the drop-down menu.

instructions