Activities of "liangshiwei"

Hi,

Signing Certificate couldn't found: openiddict.pfx

You should put the openiddict.pfx in the right place.

try


PreConfigure<OpenIddictServerBuilder>(serverBuilder =>
{
    serverBuilder.AddSigningCertificate(GetSigningCertificate(hostingEnvironment, configuration));
    serverBuilder.AddEncryptionCertificate(GetSigningCertificate(hostingEnvironment, configuration));
});

private X509Certificate2 GetSigningCertificate(IWebHostEnvironment hostingEnv, IConfiguration configuration)
{
    var fileName = "authserver.pfx";
    var passPhrase = "a0166a3a-5ffb-4f53-a8d7-a699d3c3ce1e";
    var file = Path.Combine(hostingEnv.ContentRootPath, fileName);

    if (!File.Exists(file))
    {
        throw new FileNotFoundException($"Signing Certificate couldn't found: {file}");
    }

    return new X509Certificate2(file, passPhrase);
}

same thing not showing module in abp suite only main project

you should add module project manually

okay

Hi,

I upgarde the Blazorise pacakge. and run abp bundle to generate bundle files.

How do I reproduce the problem?

Hi,

I can't reproduce the problem.

My steps

Change all HTTP to HTTPS

Update MAUI appsettings.json

Run all services and MAUI app

Hi,

I got it, I'm checking other people's questions, I'll check it out asap

Hi,

Still not, you can share the the repo link via email.

shiwei.liang@volosoft.com

Hi,

I didn't get the email from github.

okay

Hi,

How do I reproduce the problem? could you please share a test project , I will check it asap. thanks.

Showing 731 to 740 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.