Hi,
You can try this:
{
"HealthChecks":{
"Name": "MyProjectName Health Status",
"Uri": "https://xxxxxx/health-status"
}
}
....
var configuration = services.GetConfiguration();
...
var healthChecksUiBuilder = services.AddHealthChecksUI(settings =>
{
settings.AddHealthCheckEndpoint(configuration["HealthChecks:Name"], configuration["HealthChecks:Uri"]);
});
Hi,
You can try setting the autoWidth
value to true
Hi,
I have checked, and this is a known limit. you need to copy all DLL dependencies to the plug-in folder.
See: https://docs.abp.io/en/abp/latest/PlugIn-Modules#library-dependencies
And Microsoft document: https://docs.microsoft.com/en-us/dotnet/core/tutorials/creating-app-with-plugin-support#plugin-with-library-dependencies
Hi,
We will check it
Hi,
We will check it.
Hi,
We had this problem before, it was fixed in the next version, can you upgrade to 5.3.1 and try again?
Hi,
You can remove the IdentityDataSeedContributor
and add your DataSeedContributor
,
it no longer create admin user&role when you removed IdentityDataSeedContributor
.
public override void ConfigureServices(ServiceConfigurationContext context)
{
context.Services.Configure<AbpDataSeedOptions>(options =>
{
options.Contributors.Remove<IdentityDataSeedContributor>();
});
}
You can see the data seed system document:
https://docs.abp.io/en/abp/latest/Data-Seeding
https://github.com/abpframework/abp/blob/e3e1779de6df5d26f01cdc8e99ac9cbcb3d24d3c/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityDataSeedContributor.cs