Open Closed

ABP Upgrade from 3.1.0 to 3.3.0 #529


User avatar
0
alper created
Support Team Director

How to upgrade my ABP project from v3.1.0 to v3.3.0?

Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)

1 Answer(s)
  • User Avatar
    0
    alper created
    Support Team Director

    Upgrade all Microsoft.Extensions.FileProviders.Embedded packages from 3.1.6 to 3.1.8.

    To do this find/replace all the below line

    Include="Microsoft.Extensions.FileProviders.Embedded" Version="3.1.6"
    

    with this line

    Include="Microsoft.Extensions.FileProviders.Embedded" Version="3.1.8"
    

    There are 2 namespace changes

    1. Add using Volo.Saas.Editions; to SaasDataSeedContributor.cs
    2. Add using Volo.Saas.Tenants; to XXXDbMigrationService.cs

    You'll get the following error: No BLOB Storage provider was registered! At least one provider must be registered to be able to use the Blog Storing System.

    To fix this;

    Add the below package to the project XXX.EntityFrameworkCore:

    <PackageReference Include="Volo.Abp.BlobStoring.Database.EntityFrameworkCore" Version="3.3.0" />
    

    Add the below configuration to the ConfigureServices of your XXXWebModule.cs

    Configure<AbpBlobStoringOptions>(options =>
    {
        options.Containers.ConfigureDefault(container =>
        {
            container.UseDatabase();
        });
    });
    
    Markdown supported.
    Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
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.8.0-preview. Updated on September 16, 2026, 14:50
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.