Activities of "liangshiwei"

could you please also share email configuration steps ?

What's the error log?

This is the document:https://docs.abp.io/en/abp/latest/Emailing#email-settings And we have an example you can use to check whether the email settings are correct: https://github.com/abpframework/abp-samples/tree/master/EmailSendDemo

could you please elaborate which module embedd in which microservice

You can check the document:

https://docs.abp.io/en/commercial/latest/startup-templates/microservice/index

Hi,

I can create a new microservice project without any problem.

Are you upgrading from an older version to 7.0.1? you need to check all volo packages are version 7.0.1. and try abp clean & dotnet build command

Hi,

The problem has been fixed, you can try again.

Hi,

The problem has been fixed, you can try again.

Hi,

The problem has been fixed, you can try again.

Hi,

The problem has been fixed, you can try again.

Hi,

You can download the source code via ABP Suite : https://docs.abp.io/en/commercial/latest/abp-suite/source-code

Hi,

We have a planned migration on nuget.abp.io and still working on it. On the other hand, we get too many requests because of this maintenance and abp.io sites are not responding. We're heavily working on the issue with 5 team members and we plan to fix nuget.abp.io and other abp.io websites today. You can expect the stability in ~ 1.5 hours but may get a little bit longer. Thanks for your understanding.

Hi,

It's working as expected

private static void ConfigureUI(WebAssemblyHostBuilder builder)
{
    builder.RootComponents.Add<App>("#ApplicationContainer");
    builder.RootComponents.Add<HeadOutlet>("head::after");
}
@page "/"
@using Volo.Abp.MultiTenancy
@inherits MyProjectNameComponentBase
@inject AuthenticationStateProvider AuthenticationStateProvider
<div class="container">
    <h1>Control content</h1>
    <p>
        Title: @title
    </p>

    <p>
        Description: @description
    </p>

    <PageTitle>@title</PageTitle>

    <HeadContent>
        <meta name="description" content="@description">
    </HeadContent>

    @code {
        private string description = "Description set by component";
        private string title = "Title set by component";
    }

</div>

After my check, the ABP CLI is no problem.

I think you changed the proxy namespace generated by ABP.

You can always use --without-contracts option to avoid generating unnecessary files

Showing 171 to 180 of 2428 entries
Made with ❤️ on ABP v9.1.0-rc.1. Updated on January 17, 2025, 14:13