From d23cff97fb21f491a230f20372017f787cec2606 Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Mon, 10 May 2021 17:37:43 +0800 Subject: [PATCH] Update ABP Framework 4.x to 4.3 Migration Guide --- docs/en/Migration-Guides/Abp-4_3.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/en/Migration-Guides/Abp-4_3.md b/docs/en/Migration-Guides/Abp-4_3.md index 410cb64ac8..22d1282715 100644 --- a/docs/en/Migration-Guides/Abp-4_3.md +++ b/docs/en/Migration-Guides/Abp-4_3.md @@ -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. \ No newline at end of file +* `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 `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. \ No newline at end of file