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)
-
0
503 (Service Unavailable)fromhttps://nuget.abp.io/<your-guid>/v3/index.jsonmeans 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)
- Retry restore (transient outage)
dotnet restore --disable-parallel(Disabling parallelism often reduces repeated download failures during intermittent feed issues.)
- Clear NuGet caches and retry
dotnet nuget locals all --clear dotnet restore --disable-parallelEnsure your ABP private feed is correctly configured in
NuGet.config- Make sure your solution/container actually has the
nuget.abp.io/.../v3/index.jsonsource configured (and not overridden by anotherNuGet.confighigher in the directory tree). - If you’re building in Docker/CI, confirm the correct
NuGet.configis copied into the image and used during restore.
- Make sure your solution/container actually has the
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
- 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:
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.