I have no experience at ABP development
You can read the ABP document first: https://docs.abp.io/en/abp/latest, it will help you to understand ABP framework.
Hi,
We have an exmaple: https://github.com/abpframework/abp-samples/tree/master/BookStore-Modular
Hi,
I reproduced this problem using VS 2022, but it is a random occurrence. I have no idea yet, but I will continue to investigate
This problem does not occur with dotnet run
command or Rider
.
Can you try use dotnet run
to test it?
Hi,
Can you check this: https://github.com/abpframework/abp/issues/8289?
Hi,
You can use the network path. see: https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats#unc-paths
Hi,
.web
and angular
are for admins. only web.public
for users
Hi,
You can custom, replace or delete styles if you need.
See:https://docs.abp.io/en/abp/latest/UI/AspNetCore/Bundling-Minification#bundle-contributors
For example:
public class MyStyleContributor : BundleContributor
{
public override async Task ConfigureBundleAsync(BundleConfigurationContext context)
{
context.Files.RemoveAll(x => x.Contains("blazorise.bootstrap.css"));
context.Files.ReplaceOne("/libs/css/a.css","/lib/css/b.css");
context.Files.Add("/lib/css/my.css");
}
}
Configure<AbpBundlingOptions>(options =>
{
options
.StyleBundles
.Add(BlazorLeptonThemeBundles.Styles.Global, bundle =>
{
bundle
.AddBaseBundles(BlazorStandardBundles.Styles.Global)
.AddContributors(typeof(MyStyleContributor));
});
});
You should use CSS isolation for your own components
Just want to know if abp allow to do this own module.
Of course you can,modularity is the core feature of ABP
Hi
what is the use case for angular app ? is it for admins ?
Yes, We current only provide web.public
of MVC UI
HI,
Are you talking about custom database tables?
See: https://docs.abp.io/en/abp/4.4/Entity-Framework-Core#mapefcoredbcontext
Example:
ObjectExtensionManager.Instance.MapEfCoreDbContext<FileManagementDbContext>(b =>
{
//....
});