Activities of "leeneshk"

@EngincanV

I tested locally, and I have a successful build but the issue still persists on the build pipeline, I can concur with @abodur as well.

This issue occurred from today, we had successful builds the entire time.

Hi, the package you are mentioned is an open-source package, which can be seen at https://www.nuget.org/packages/Volo.Abp.DistributedLocking.Abstractions.

So, it's normal that this package can't be found in the nuget.abp.io. If you got this error when you build/restore your solution, your NuGet.Config file might be wrong. Can you share it please?

Hi @EngincanV

Thank you for your response,

This is my Nuget.Config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="nuget.abp.io" value="https://nuget.abp.io/xxx/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="" />
<package pattern="Microsoft.
" />
<package pattern="Volo." />
</packageSource>
<packageSource key="nuget.abp.io">
<package pattern="Volo.
" />
</packageSource>
</packageSourceMapping>
</configuration>

We added packageSourceMapping to the NuGet.config for faster restoring Volo.* packages, however, it seems it might created an issue in your case. So, can you please update this file as follows:

<?xml version="1.0" encoding="utf-8"?> 
<configuration> 
  <packageSources> 
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> 
    <add key="ABP Commercial NuGet Source" value="https://nuget.abp.io/xxx/v3/index.json" /> 
  </packageSources> 
</configuration> 

Then, retry to restore/build your project. Please, don't forget to replace the xxx part with your api-key and let me know if it works.

Thank you very much, I am busy testing, I should give feedback shortly

Do I need to add each package per class library and web project individually?

Because there are a lot more errors on packages that I received

2025-01-08T14:07:57.2990725Z        (Restore target) -> 
2025-01-08T14:07:57.2992228Z          C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.Users.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.users.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2993230Z        C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301:   Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2994754Z          C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.Users.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.users.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2995723Z        C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301:   Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2997245Z          C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.Users.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.users.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2998182Z        C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301:   Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2999600Z          C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.Users.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.users.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3000854Z        C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301:   Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3002199Z          C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.AspNetCore.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.aspnetcore.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3003187Z        C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301:   Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3004731Z          C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.AspNetCore.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.aspnetcore.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3005714Z        C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301:   Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3007005Z          C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.AspNetCore.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.aspnetcore.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3007947Z        C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301:   Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3009410Z          C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.AspNetCore.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.aspnetcore.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3010378Z        C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301:   Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3011732Z          C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.TextTemplating.Scriban' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.texttemplating.scriban/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3012683Z        C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301:   Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3014161Z          C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.TextTemplating.Scriban' from remote source

Hi, the package you are mentioned is an open-source package, which can be seen at https://www.nuget.org/packages/Volo.Abp.DistributedLocking.Abstractions.

So, it's normal that this package can't be found in the nuget.abp.io. If you got this error when you build/restore your solution, your NuGet.Config file might be wrong. Can you share it please?

Hi @EngincanV

Thank you for your response,

This is my Nuget.Config:

<?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> <add key="nuget.abp.io" value="https://nuget.abp.io/xxx/v3/index.json" /> </packageSources> <packageSourceMapping> <packageSource key="nuget.org"> <package pattern="" /> <package pattern="Microsoft." /> <package pattern="Volo." /> </packageSource> <packageSource key="nuget.abp.io"> <package pattern="Volo." /> </packageSource> </packageSourceMapping> </configuration>

Hello,

Are you experiencing any issues/bugs with nuget.abp.io?

We are unable to deploy via Azure CI/CD Build Pipelines as the nuget restore keeps giving a 403 Forbidden error, below are the list of packages it keeps complaining about:

Retrying 'FindPackagesByIdAsync' for source 'https://nuget.abp.io/xxx/v3/package/volo.abp.aspnetcore.abstractions/index.json'. Response status code does not indicate success: 403 (Forbidden).

Hello ,

It was an issue about an attack yesterday on abp.io. at leas Our DevOps team increased the security level, and this problem has been fixed.
We are aware that it's been a serious problem and affected you.
We will take extra action so as not to face this problem again.
You can send an email to support@abp.io when you need help.
I appreciate your understanding 🙏

Thank you.

yes i can send email. but for any live customer facing app there should be some 24/7 support available. it can be call, email or any form to respond to customer.

I have to agree with @smansuri on this - abp.io needs a much better support strategy, as we pay a lot for the licensing and we entrust abp.io to have a higher uptime with a speedy resolution time as well

Hello, I would also like to find out the impact of such downtime, is it only for accessing the abp CLI and abp studio, or does it affect the solution as well? Including deployed versions of the solution to a production environment?

As a commercial licensed company, we need resolutions to such issues as we in an industry that cannot afford any downtime, just curious if this is a regular occurance.

Thanks!

Showing 21 to 27 of 27 entries
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.0.0-preview. Updated on September 01, 2025, 08:37