Merge pull request #8956 from abpframework/liangshiwei/upgrade-docs

Update ABP Framework 4.x to 4.3 Migration Guide
pull/9088/head
Halil İbrahim Kalkan 4 years ago committed by GitHub
commit 1ab0cff9f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,4 +34,10 @@ No change on the framework packages, but **module packages are separated as Web
### Other Changes
* `EntityAction.RequiredPermission` has been marked as **obsolete**, because of performance reasons. It is suggested to use the `Visible` property by checking the permission/policy yourself and assigning to a variable.
* `EntityAction.RequiredPermission` has been marked as **obsolete**, because of performance reasons. It is suggested to use the `Visible` property by checking the permission/policy yourself and assigning to a variable.
### Resource Reference Changes
Open `<YourProjectName>BundleContributor.cs` and replace `context.Add("main.css");` to `context.Add("main.css", true);`
Then run `abp bundle` command in the `blazor` folder to update resource references.
Loading…
Cancel
Save