Activities of "liangshiwei"

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 6692 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20