Activities of "liangshiwei"

Try:

EntityFrameworkCore.DbMigrations instead of EntityFrameworkCore project. See https://docs.abp.io/en/abp/latest/Startup-Templates/Application#entityframeworkcore-dbmigrations-project

Hi

identity server clients are not isolated from tenants, The client can be a web application. Web application can be multi-tenant.

You can keep migration project, use dotnet ef migrations script command to generates sql and apply to database(just remove __EFMigrationsHistory table changes,you should not have this table). see https://docs.microsoft.com/en-us/ef/core/miscellaneous/cli/dotnet#dotnet-ef-migrations-script

You should login to the application as a tenant to create identity server clients.

I did not see the relevant content in the commercial documents

Hi

Try:

Configure<AbpBundlingOptions>(options =>
{
    options
        .ScriptBundles
        .Configure(LeptonThemeBundles.Scripts.Global, bundle => {
            bundle.AddContributors(typeof(RemoveJqueryScriptContributor));
        });
});

I will try reproduce your problem, but you should remove download file link and file on Internet, because it include your License.

Try:

var client = new HttpClient();
var disco = await client.GetDiscoveryDocumentAsync(_configuration["IdentityClients:Default:Authority"]);
if (disco.IsError)
{
    Console.WriteLine(disco.Error);
    return;
}

client.DefaultRequestHeaders.Add(TenantResolverConsts.DefaultTenantKey,<tenant>);

// request token
var tokenResponse = await client.RequestPasswordTokenAsync(new PasswordTokenRequest
{
    Address = disco.TokenEndpoint,
    ClientId = _configuration["IdentityClients:Default:ClientId"],
    ClientSecret = _configuration["IdentityClients:Default:ClientSecret"],
    UserName = _configuration["IdentityClients:Default:UserName"],
    Password = _configuration["IdentityClients:Default:UserPassword"],
    Scope = _configuration["IdentityClients:Default:Scope"]
});

You can publish .Domain Nuget package to your private Nuget server.

Hi

question 1:

You need to set files property in the Theme folder to embedded files, This is a template error, we will fix it in the next version.

Add :

question 2

~~I see the change time information is removed in version 2.8, So you can't see, you should clean up the publish directory and re-publish~~. I can't reproduce this problem,you should clean up the publish directory and re-publish

question 3

I can't reproduce this problem, But you can place mini.css in the styles folder to fix this problem.

Showing 5531 to 5540 of 5631 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13