diff --git a/getting-started/Installation/install-nuget-packages.md b/getting-started/Installation/install-nuget-packages.md index 7adea995..57dd9161 100644 --- a/getting-started/Installation/install-nuget-packages.md +++ b/getting-started/Installation/install-nuget-packages.md @@ -68,3 +68,4 @@ Before you can install Telerik NuGet packages, you must configure the Telerik Nu * [Restoring NuGet Packages in Your CI Workflow]({%slug using-nuget-keys%}) * [How to Obtain Telerik Document Processing Libraries for .NET Framework, .NET Standard, .NET Core, .NET 6/.NET 8/.NET 9]({%slug distribute-telerik-document-processing-libraries-net-versions%}) + * [Handling the 'No packages found" Message when Using the Telerik NuGet Server]({%slug handle-no-nuget-packages-found-message%}) diff --git a/getting-started/Installation/nuget-packages.md b/getting-started/Installation/nuget-packages.md index 5ab14b24..b6cb669f 100644 --- a/getting-started/Installation/nuget-packages.md +++ b/getting-started/Installation/nuget-packages.md @@ -2,7 +2,7 @@ title: Available NuGet Packages page_title: Available NuGet Packages description: Learn how you can use the Telerik Document Processing libraries through NuGet. -slug: installation-nuget-packages +slug: available-nuget-packages tags: nuget, document, processing, assembly published: True position: 6 diff --git a/knowledge-base/handle-no-nuget-packages-found-message.md b/knowledge-base/handle-no-nuget-packages-found-message.md new file mode 100644 index 00000000..2189da74 --- /dev/null +++ b/knowledge-base/handle-no-nuget-packages-found-message.md @@ -0,0 +1,53 @@ +--- +title: Handling the 'No packages found" Message when Using the Telerik NuGet Server +description: Learn how to handle the 'No packages found" message when using the Telerik NuGet Server +type: how-to +page_title: How to handle the 'No packages found" message when using the Telerik NuGet Server +slug: handle-no-nuget-packages-found-message +tags: telerik, nuget, server, package, dpl, document, processing +res_type: kb +ticketid: 1672286 +--- + +## Environment + +| Version | Product | Author | +| --- | --- | ---- | +| 2024.4.1106| Document Processing Libraries |[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)| + +## Description + +When adding the [Telerik NuGet source]({%slug installation-nuget-packages%}#download-from-the-nuget-server) to your Visual Studio, the expected Telerik Document Processing NuGet packages may not appear in the *Manage NuGet Packages* window. This knowledge base article shows how to troubleshoot this scenario and properly setup the NuGet feed. + +>note Make sure that your firewall or proxy doesn't prevent the access to the Telerik NuGet server. + +## Solution + +To resolve the issue of Telerik NuGet packages not appearing in Visual Studio, follow these steps: + +1. **Add Telerik NuGet Source Correctly**: Make sure the Telerik NuGet source is added correctly to Visual Studio. The correct source URL is `https://nuget.telerik.com/v3/index.json`. Refer to the [Download from the NuGet server section]({%slug installation-nuget-packages%}#download-from-the-nuget-server) for detailed instructions. + + ![NuGet server Authentication](images/telerik-nuget-server.png) + +If the setup is proper and you still don't have access to the Telerik Document Processing NuGet packages from the server, it may be related to the specific account used for authentication. + +2. **Enter Correct Credentials**: When prompted, enter the correct Telerik account credentials. Ensure you are using an account with an active subscription or trial. + + ![NuGet server Authentication](images/nuget-server-authentication.png) + +3. **Check for Multiple Accounts**: Verify if you have multiple Telerik accounts and ensure you are using the one with an active subscription. Packages may not appear if the account used has no active licenses or expired trials. + +4. **Reset Telerik NuGet Credentials**: If you have verified the above steps and still face issues, try resetting your Telerik NuGet credentials. This ensures that Visual Studio is using the correct account for authentication. Instructions for resetting credentials can be found in the [Troubleshooting Telerik NuGet]({%slug troubleshooting-telerik-nuget%}#issue-resetting-telerik-nuget-credentials) guide. + + ![Reset NuGet Credentials](images/reset-nuget-credentials.png) + +5. **Download Packages Manually (Optional)**: As a workaround, you can manually download the required Telerik NuGet packages and add them as a local source in Visual Studio. Detailed steps for manual download are provided in the [Manually Download NuGet Packages](https://docs.telerik.com/devtools/document-processing/getting-started/installation/install-nuget-packages#manually-download-nuget-packages) section. + +## See Also + +- [Available NuGet Packages]({%slug available-nuget-packages%}) +- [Install Using NuGet Packages]({%slug installation-nuget-packages%}) +- [Restoring NuGet Packages in Your CI Workflow]({%slug using-nuget-keys%}) +- [Troubleshooting Telerik NuGet]({%slug troubleshooting-telerik-nuget%}) + +--- diff --git a/knowledge-base/images/nuget-server-authentication.png b/knowledge-base/images/nuget-server-authentication.png new file mode 100644 index 00000000..a205ee8e Binary files /dev/null and b/knowledge-base/images/nuget-server-authentication.png differ diff --git a/knowledge-base/images/reset-nuget-credentials.png b/knowledge-base/images/reset-nuget-credentials.png new file mode 100644 index 00000000..9c560447 Binary files /dev/null and b/knowledge-base/images/reset-nuget-credentials.png differ diff --git a/knowledge-base/images/telerik-nuget-server.png b/knowledge-base/images/telerik-nuget-server.png new file mode 100644 index 00000000..017d85fc Binary files /dev/null and b/knowledge-base/images/telerik-nuget-server.png differ