Activities of "liangshiwei"

Hi,

Could not load type 'Volo.Abp.MultiTenancy.ICurrentTenant' from assembly 'Volo.Abp.MultiTenancy, Version=9.0.2.0

I guess your project uses different ABP versions

You can check all package versions and dependency relationships in the project.assets.json file

Hi,

ABP can't automatically migrate Quartz.

you can consider using ADO.NET to create the database table, here are the SQL: https://github.com/quartznet/quartznet/tree/main/database/tables

I think it's related to the RabbitMQ client package version.

Your project may have a package installed that is inconsistent with the version used by ABP.

ABP use RabbitMQ.Client 6.8.1 version, you can check your solution.

I can't see any difference with two methods, you should check the permissions

Hi,

According to the document, it is a singleton, and you can directly modify it. https://learn.microsoft.com/en-us/aspnet/core/fundamentals/configuration/options?view=aspnetcore-9.0#options-interfaces

public class TestAppService : TestappAppService
{
    private readonly IOptions<AbpAuditingOptions> _options;

    public TestAppService(IOptions<AbpAuditingOptions> options)
    {
        _options = options;
    }

    public void ChangeOptions()
    {
        _options.Value.IsEnabledForGetRequests = !_options.Value.IsEnabledForGetRequests;
    }
    
    public bool GetIsEnabledForGetRequests()
    {
        return _options.Value.IsEnabledForGetRequests;
    }
}

Hi,

You can try this

[Dependency(ReplaceServices = true)]
public class MyAppBrandingProvider : DefaultBrandingProvider
{
    private IStringLocalizer<MyAppResource> _localizer;

    public MyAppBrandingProvider(IStringLocalizer<MyAppResource> localizer)
    {
        _localizer = localizer;
    }

    public override string AppName => _localizer["AppName"];
    
    public override string LogoUrl { get => GetLogoUrl(); }
    
    public string GetLogoUrl()
    {
        switch (CultureInfo.CurrentUICulture.Name)
        {
            case "tr":
                return "/images/logo-tr.png";
            case "de":
                return "/images/logo-de.png";
            default:
                return "/images/logo-en.png";
        }
    }
}

okay,

My email is shiwei.liang@volosoft.com

Hi,

May I know your email address

@merdan

you can try dotnet clean and dotnet build

Sorry, I can't share the source code because of the license policy.

Here some documents may can help you https://abp.io/docs/latest/framework/architecture/modularity/extending/customizing-application-modules-guide

Showing 381 to 390 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 November 04, 2025, 06:41