Activities of "maliming"

hi

Can you pass the -t app options when using CLI to create a new template project?

abp new Acme.BookStore -t app --old

https://abp.io/docs/latest/cli/differences-between-old-and-new-cli

: )

hi

The API is standard HTTP.

So you can call the API endpoint to get an access token or for business logic.

You can try to generate the HTTP proxy from swagger.

https://github.com/OpenAPITools/openapi-generator https://github.com/RicoSuter/NSwag

hi

How do we reproduce this?

Can you share some code.

hi

You can use NullEmailSender to implement IEmailSender. So the email will not be sent.

context.Services.Replace(ServiceDescriptor.Singleton<IEmailSender, NullEmailSender>());

Remove the EmailingPageContributor from SettingManagementPageOptions, then the email setting UI will be hidden

Configure<SettingManagementPageOptions>(options =>
{
    //options.Contributors.Remove EmailingPageContributor
});

hi

From the error message/stack, it seems unrelated to the abp framework.

Can you try to run app via dotnet run command to see if there still have any error messages in the logs.

Thanks.

hi

Can you share a test project?

Thanks

liming.ma@volosoft.com

Great : )

ok, I have refunded your ticket.

hi

WebAssemblyStyleFiles(GlobalStyles) is preparing for blazer wasm.
It requires @rendermode="InteractiveAuto".

You are using the InteractiveServer, It doesn't need the wasm library.

Showing 81 to 90 of 7729 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30