Hi sorry for the late response. I'll check this asap.
I will send the compressed zip file to support via email.
Thanks.
trying to upgrade by executing command abp update but it only update from v8.1.3 to v8.1.4.
For a clean installation, please follow the steps below:
- To update ABP CLI run the following commands:
dotnet tool uninstall -g Volo.Abp.Cli dotnet tool install -g Volo.Abp.Cli --version 8.2.0-rc.5
- To update ABP Suite run the following commands:
dotnet tool uninstall -g Volo.Abp.Suite abp suite install --version 8.2.0-rc.5
Then, to update your project, you can either update it through the ABP Suite UI or by running the command below:
abp update
You should specify the version because it's a release candidate. Therefore, please try the command below:
abp update --version 8.2.0-rc.5
trying to upgrade by executing command abp update but it only update from v8.1.3 to v8.1.4.
For a clean installation, please follow the steps below:
dotnet tool uninstall -g Volo.Abp.Cli
dotnet tool install -g Volo.Abp.Cli --version 8.2.0-rc.5
dotnet tool uninstall -g Volo.Abp.Suite
abp suite install --version 8.2.0-rc.5
Then, to update your project, you can either update it through the ABP Suite UI or by running the command below:
abp update
as per above mentioned comment File property added in child and master entities ?
Yes. You can use the File property for both child and master entities.
It seems you are using an earlier version of ABP Suite. Please check the ABP Suite version and update it to v8.2+:
The problem is related to that you did not set "show on create modal" for properties. When it's not selected then it's not generated on the related places:
For a quick workaround, you can check the "show on create modal" option and regenerate the entity, it will be fixed.
I'll fix this problem asap. BTW, your ticket is refunded. Regards.
as per above mentioned comment File property added in child and master entities ?
Yes. You can use the File property for both child and master entities.
Hi, I'm unable to reproduce the problem. Can you please share your entity metadata and steps, so I can reproduce the problem?
. How can i use abp suite to generate UI for angular as project was originally generated with MVC razor pages. Where should i change the configuration so it will generate angular UI
ABP does not create only Angular project for your existing solution. You should create an angular project and copy the angular folder and make the related configurations for your existing solution.
Then, you can open the appsettings.json
file under the %UserProfile%.abp\suite folder and change your application's UI as angular. Then, you can generate CRUD pages for Angular UI.
When you select the "include entities from ABP modules" option, it scans the solution of the current module's assembly and then lists the related ABP modules' entities'. So, in your scenario, the dependent ABP modules' entities should only be shown in the options for your module project. This is by design. Please correct me if I misunderstood.
Regards.