This is happening in for the Blazor Server project. It's a fresh install, with the latest framework. I even tried abp install-libs
and it did not work.
ABP Framework version: v5.2.0
UI type: Blazor Server
DB provider: EF Core
Tiered (MVC) or Identity Server Separated (Angular): No
Exception message and stack trace: AbpException: Could not find the bundle file '/libs/abp/core/abp.css' for the bundle 'Lepton.Global'!
Steps to reproduce the issue: Install a new tiered blazor server/ef core project via abp suite
When you add the Forms module using Suite to a Blazor project, it does not render. It's missing vue.js.
creating a "generated.cs" file is a partial solution of not overwriting your custom code, what about injecting code in existing classes (DbContext, Permissions, MenuProviders etc..) ?
Could some of this be alleviated by creating base classes?
I'm wondering if you could add a new feature to abp Suite to generate shared classes with two files such as this:
BookDto.cs <- Developer can modify this to their specialized needs BookDto.generated.cs <- Generated class by abp Suite - Developer does not modify this
This way, we can continue to regenerate these entities without overwriting any custom work that we may do.
Thank you!
-B