Skip to content
Setting Up Hubtel NuGet Package Source
Follow these steps to configure NuGet on your machine to recognize Hubtel's package source and set up credentials for using internal packages:
Step 1: Set Up Credentials
- Refer to the official Azure Artifacts Credential Provider repository to install the Microsoft Artifacts Credential Provider.
Step 2: Configure NuGet Package Source
Using Dotnet NuGet CLI
- Download NuGet CLI.
- Run the following command in the terminal:sh
dotnet nuget sources add -Name "hubtel" -Source "https://pkgs.dev.azure.com/hubtel/_packaging/hubtel/nuget/v3/index.json"
Using Visual Studio Code
- Visit the VS Code Nuget Gallery reference documentation.
- Add a new feed on the right panel and set the "Name" field to
hubtel
and the "URL" field tohttps://pkgs.dev.azure.com/hubtel/_packaging/hubtel/nuget/v3/index.json
, then selectEnabled
.
Using Rider
- Visit the Rider reference documentation on how to manage NuGet package sources.
- Add a new feed on the right panel and set the "Name" field to
hubtel
and the "URL" field tohttps://pkgs.dev.azure.com/hubtel/_packaging/hubtel/nuget/v3/index.json
, then selectEnabled
.
Using Visual Studio
- Visit the Visual Studio reference documentation.
CHAT SAMMIAT