Hi! We have no 8.3.0 version for Volo.Abp.Studio.Cli. You can view version compatibility from this document: https://abp.io/docs/latest/studio/version-compatibility
We haven't released a version for 8.3.0 packages yet. We will after we finish our controls. For now, if you want to use 8.3.0 version packages for your Studio templates, you can easily upgrade your packages from here:
Updated, thanks for the correction. Regards.
Hi, after you created a microservice solution and a service project for yourself. Then you can open it on ABP Suite UI (either in the ABP Studio application or open the ABP Suite UI in a different browser window), and generate CRUD pages as you would do for a monolith application.
The flow can be summarized as:
Regards.
Hi, the Guid
type is not supported for binding in Blazorise components. So, it's not supported right now.
Regards.
⚡ Update ABP CLI and ABP Suite
dotnet tool update -g Volo.Abp.Studio.Cli --version 0.8.1
abp suite update --version 8.3.0
📗 Blog post
🔼 Migration guides
✏️ Feel free to report any bugs, issues, and problems.
Hi, we removed project creation from ABP Suite UI. It's recommended to create your projects from ABP Studio and generate code pages with ABP Suite, which is already integrated into the ABP Studio application. Therefore, this gives you the ability to do everything from a single application.
Update: If you don't want to manually change this line, you can also update your ABP Studio version to 0.7.8+ and re-generate the blazor-web app project, this problem is already fixed with 0.7.8.
Hi, I successfully reproduced the problem and will fix it with the next release. Also, I refunded your ticket.
For a quick workaround, you can open the appsettings.json file under the .abp/suite folder in your user-profile directory, and find the related module in the json file, and do the following change:
- "ProjectTemplateType": 2,
+ "ProjectTemplateType": 1
Then, you should be able to generate CRUD pages for the module.
@using System.Net.Http @using Microsoft.AspNetCore.Components.Authorization @using Microsoft.AspNetCore.Components.Forms @using Microsoft.AspNetCore.Components.Routing @using Microsoft.AspNetCore.Components.Web @using Microsoft.AspNetCore.Components.WebAssembly.Http @using static Microsoft.AspNetCore.Components.Web.RenderMode @using Microsoft.JSInterop @using Volo.Abp.AspNetCore.Components @using Volo.Abp.AspNetCore.Components.WebAssembly @using TestBlazorApp.Blazor.WebApp.Client @using Blazorise @using Blazorise.DataGrid @using Blazorise.Components @using Volo.Abp.BlazoriseUI @using Volo.Abp.BlazoriseUI.Components
Hi again, changing the @using TestBlazorApp.Blazor.WebApp.Client
as @using TestBlazorApp.Blazor.Client
should directly fix this problem. No need to manually change every namespace.
Regards.
Hi, this is probably a duplicate of https://abp.io/support/questions/7700/Abp-Suite-Error-Cannot-find-the-directory-in-any-project-with-82-in-Blazor-WebApp
We fixed this problem, please make the changes I explained in the question to manually fix this problem for now. Regards.