Activities of "liangshiwei"

ok.

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,

I checked the unit tests, and it works.

Can you share the AWS configuration with me via email? thanks. shiwei.liang@volosoft.com

Hi,

You can try setting the autoWidth value to true

Hi,

Is this work for you?

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

Showing 601 to 610 of 2428 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on January 24, 2025, 10:25