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 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