Open Closed

Nugget services does not work #10516


User avatar
0
erkan.uci created

Hi Nugget serices doest work ?

15.85 /usr/share/dotnet/sdk/10.0.201/NuGet.targets(196,5): error : Response status code does not indicate success: 503 (Service Unavailable). [/src/services/language/VentraHubStructure.LanguageService/VentraHubStructure.LanguageService.csproj] 15.94 /usr/share/dotnet/sdk/10.0.201/NuGet.targets(196,5): error : The feed 'nuget.abp.io [https://nuget.abp.io/08bc9b19-d339-41c4-b7e1-2ad784d49722/v3/index.json]' lists package 'Volo.Abp.LanguageManagement.Application.10.0.2' but multiple attempts to download the nupkg have failed. The feed is either invalid or required packages were removed while the current operation was in progress. Verify the package exists on the feed and try again. [/src/services/language/VentraHubStructure.LanguageService/VentraHubStructure.LanguageService.csproj] 16.07 /usr/share/dotnet/sdk/10.0.201/NuGet.targets(196,5): error : The feed 'nuget.abp.io [https://nuget.abp.io/08bc9b19-d339-41c4-b7e1-2ad784d49722/v3/index.json]' lists package 'Volo.Abp.LanguageManagement.HttpApi.10.0.2' but multiple attempts to download the nupkg have failed. The feed is either invalid or required packages were removed while the current operation was in progress. Verify the package exists on the feed and try again. [/src/services/language/VentraHubStructure.LanguageService/VentraHubStructure.LanguageService.csproj] 16.09 Failed to restore /src/services/language/VentraHubStructure.LanguageService/VentraHubStructure.LanguageService.csproj (in 12.82 sec). 16.12 /usr/share/dotnet/sdk/10.0.201/NuGet.targets(196,5): error : The feed 'nuget.abp.io [https://nuget.abp.io/08bc9b19-d339-41c4-b7e1-2ad784d49722/v3/index.json]' lists package 'Volo.Abp.LanguageManagement.Application.Contracts.10.0.2' but multiple attempts to download the nupkg have failed. The feed is either invalid or required packages were removed while the current operation was in progress. Verify the package exists on the feed and try again. [/src/services/language/VentraHubStructure.LanguageService/VentraHubStructure.LanguageService.csproj] 16.19 /usr/share/dotnet/sdk/10.0.201/NuGet.targets(196,5): error : The feed 'nuget.abp.io [https://nuget.abp.io/08bc9b19-d339-41c4-b7e1-2ad784d49722/v3/index.json]' lists package 'Volo.Abp.Commercial.SuiteTemplates.10.0.2' but multiple attempts to download the nupkg have failed. The feed is either invalid or required packages were removed while the current operation was in progress. Verify the package exists on the feed and try again. [/src/services/language/VentraHubStructure.LanguageService/VentraHubStructure.LanguageService.csproj] 16.19 /usr/share/dotnet/sdk/10.0.201/NuGet.targets(196,5): error : The feed 'nuget.abp.io [https://nuget.abp.io/08bc9b19-d339-41c4-b7e1-2ad784d49722/v3/index.json]' lists package 'Volo.Saas.EntityFrameworkCore.10.0.2' but multiple attempts to download the nupkg have failed. The feed is either invalid or required packages were removed while the current operation was in progress. Verify the package exists on the feed and try again. [/src/services/language/VentraHubStructure.LanguageService/VentraHubStructure.LanguageService.csproj] 16.36 Failed to restore /src/services/language/VentraHubStructure.LanguageService.Contracts/VentraHubStructure.LanguageService.Contracts.csproj (in 12.96 sec).


1 Answer(s)
  • User Avatar
    0
    AI-Bot created
    Support Team ABP Agent
    • 503 (Service Unavailable) from https://nuget.abp.io/<your-guid>/v3/index.json means the ABP private NuGet feed endpoint was reachable, but the service (or a gateway in front of it) temporarily could not serve package downloads. This is not caused by missing packages in your project; it’s a feed availability/network issue.

    Do this to recover (practical steps)

    1. Retry restore (transient outage)
    dotnet restore --disable-parallel
    

    (Disabling parallelism often reduces repeated download failures during intermittent feed issues.)

    1. Clear NuGet caches and retry
    dotnet nuget locals all --clear
       dotnet restore --disable-parallel
    
    1. Ensure your ABP private feed is correctly configured in NuGet.config

      • Make sure your solution/container actually has the nuget.abp.io/.../v3/index.json source configured (and not overridden by another NuGet.config higher in the directory tree).
      • If you’re building in Docker/CI, confirm the correct NuGet.config is copied into the image and used during restore.
    2. If it continues (likely account/feed-side or connectivity from your environment)

      • Since this is a commercial/private feed and you’re getting consistent 503 download failures, contact ABP support so they can check the feed status for your organization/license and your specific feed URL:
        • https://abp.io/contact

    Sources

    • https://abp.io/support/questions/10462
    • https://abp.io/support/questions/6570
    • https://abp.io/contact

    This response was generated by AI. If it didn’t solve your problem, feel free to post a new answer — our support team will jump in to help you soon.

Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.3.0-preview. Updated on March 13, 2026, 12:51
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.