Migration Guide for the Blazor UI from the v3.2 to the v3.3
Startup Template Changes
- Remove
Volo.Abp.Account.Blazor
NuGet package from your.Blazor.csproj
and addVolo.Abp.TenantManagement.Blazor
NuGet package. - Remove the
typeof(AbpAccountBlazorModule)
from the dependency list of YourProjectBlazorModule class and add thetypeof(AbpTenantManagementBlazorModule)
. - Add
@using Volo.Abp.BlazoriseUI
and@using Volo.Abp.BlazoriseUI.Components
into the_Imports.razor
file. - Remove the
div
withid="blazor-error-ui"
(with its contents) from thewwwroot/index.html
file, since the ABP Framework now shows error messages as a better message box. - Update the
AddOidcAuthentication
options in your YourProjectBlazorModule class as described in the issue #5913.
BlazoriseCrudPageBase to AbpCrudPageBase
Renamed BlazoriseCrudPageBase
to AbpCrudPageBase
. Just update the usages. It also has some changes, you may need to update method calls/usages manually.