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.
		
		
		
		
		
			
		
			
				
					
					
					
						
							1.0 KiB
						
					
					
				
			
		
		
	
	
							1.0 KiB
						
					
					
				Migration Guide for the Blazor UI from the v3.2 to the v3.3
Startup Template Changes
- Remove Volo.Abp.Account.BlazorNuGet package from your.Blazor.csprojand addVolo.Abp.TenantManagement.BlazorNuGet package.
- Remove the typeof(AbpAccountBlazorModule)from the dependency list of YourProjectBlazorModule class and add thetypeof(AbpTenantManagementBlazorModule).
- Add @using Volo.Abp.BlazoriseUIand@using Volo.Abp.BlazoriseUI.Componentsinto the_Imports.razorfile.
- Remove the divwithid="blazor-error-ui"(with its contents) from thewwwroot/index.htmlfile, since the ABP Framework now shows error messages as a better message box.
- Update theAddOidcAuthenticationoptions 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.