mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2.8 KiB
2.8 KiB
ABP Framework 4.x to 4.3 Migration Guide
Common
app.UseVirtualFiles()
has been marked as obsolete. Useapp.UseStaticFiles()
instead. ABP will handle the virtual file system integrated to the static files middleware.
Blazor UI
Implemented the Blazor Server Side support with this release. It required some packages and namespaces arrangements. Existing Blazor (WebAssembly) applications should done the changes explained in this section.
Namespace Changes
AbpBlazorMessageLocalizerHelper
-> moved to Volo.Abp.AspNetCore.Components.WebAbpRouterOptions
-> moved to Volo.Abp.AspNetCore.Components.Web.Theming.RoutingAbpToolbarOptions
andIToolbarContributor
-> moved to Volo.Abp.AspNetCore.Components.Web.Theming.ToolbarsIAbpUtilsService
-> moved to Volo.Abp.AspNetCore.Components.WebPageHeader
-> moved toVolo.Abp.AspNetCore.Components.Web.Theming.Layout
.
In practice, if your application is broken because of the Volo.Abp.AspNetCore.Components.WebAssembly.*
namespace, please try to switch to Volo.Abp.AspNetCore.Components.Web.*
namespace.
Remember to change namespaces in the _Imports.razor
files.
Package Changes
No change on the framework packages, but module packages are separated as Web Assembly & Server;
- Use
Volo.Abp.Identity.Blazor.WebAssembly
NuGet package instead ofVolo.Abp.Identity.Blazor
package. Also, changeAbpIdentityBlazorModule
usage toAbpIdentityBlazorWebAssemblyModule
in the[DependsOn]
attribute on your module class. - Use
Volo.Abp.TenantManagement.Blazor.WebAssembly
NuGet package instead ofVolo.Abp.TenantManagement.Blazor
package. Also, changeAbpTenantManagementBlazorModule
usage toAbpTenantManagementBlazorWebAssemblyModule
in the[DependsOn]
attribute on your module class. - Use
Volo.Abp.PermissionManagement.Blazor.WebAssembly
NuGet package instead ofVolo.Abp.PermissionManagement.Blazor
package. Also, changeAbpPermissionManagementBlazorModule
usage toAbpPermissionManagementBlazorWebAssemblyModule
in the[DependsOn]
attribute on your module class. - Use
Volo.Abp.SettingManagement.Blazor.WebAssembly
NuGet package instead ofVolo.Abp.SettingManagement.Blazor
package. Also, changeAbpSettingManagementBlazorModule
usage toAbpSettingManagementBlazorWebAssemblyModule
in the[DependsOn]
attribute on your module class. - Use
Volo.Abp.FeatureManagement.Blazor.WebAssembly
NuGet package instead ofVolo.Abp.FeatureManagement.Blazor
package. Also, changeAbpFeatureManagementBlazorModule
usage toAbpFeatureManagementBlazorWebAssemblyModule
in the[DependsOn]
attribute on your module class.
Other Changes
EntityAction.RequiredPermission
has been marked as obsolete, because of performance reasons. It is suggested to use theVisible
property by checking the permission/policy yourself and assigning to a variable.