Activities of "liangshiwei"

Hi,

you can add these packages to Blazor.server project and add the module dependencies

BTW, payment gateway page doesn't support Blazor webassembly UI

Answer

Hi,

Background job is an independent thread

See https://abp.io/support/questions/7261/Best-practice-backgroud-job-in-a-microservices-environment#answer-3a12d477-e7fa-896b-00c0-38f06cdfc23e https://abp.io/support/questions/6417/AsyncBackgroundJob-injected-repositories-context-has-null-tenant-and-null-user

CS0433 The type 'AccountUrlNames' exists in both 'Volo.Abp.Account.Application, Version=8.2.2.0, Culture=neutral, PublicKeyToken=null' and 'Volo.Abp.Account.Pro.Public.Application, Version=8.2.2.0, Culture=neutral, PublicKeyToken=null' PartnerPortal.HttpApi.Host

Please remove Volo.Abp.Account.Application package from your solution

Volo.Abp.Account is an open-source module, you don't need it, please remove those package

Volo.Abp.Account.Pro is a pro module for commercial.

Hi,

Maybe related to this: https://abp.io/support/questions/6409/Mobile-MAUI-Android-Release-build-stuck-on-splash

Hi,

It works for me.

you need to set the Remember me to true; otherwise, the cookie age is session. you can override the login page to set Remember me to true

Hi,

You should put the localization files in the same project

Hi,

sorry, if you don't need to email send, you can use the NullEmailSender

add this to the ConfigureServices.

context.Services.Replace(ServiceDescriptor.Singleton<IEmailSender, NullEmailSender>());

System.TypeLoadException: Could not load type 'Microsoft.IdentityModel.Json.JsonConvert' from assembly 'Microsoft.IdentityModel.Tokens, Version=7.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.

See https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/issues/2346

you can reference to Microsoft.IdentityModel.Json.JsonConvert directly

Unfortunately there is no better way

None of the constructors found on type 'CastandCrew.PSL.VendorManagement.VendorController.VendorController' can be invoked with the available services and parameters: Cannot resolve parameter 'CastandCrew.PSL.VendorManagement.Vendor.IVendorManagementAppService vendorManagementAppService' of constructor 'Void .ctor(CastandCrew.PSL.VendorManagement.Vendor.IVendorManagementAppService)'.

it seems like some services are not registered in the IOC.

public class VendorAppService : VendorManagementAppService, IVendorManagementAppService

Please rename IVendorManagementAppService to IVendorAppService

public interface IVendorAppService : IApplicationService
...


public class VendorAppService : VendorManagementAppService, IVendorAppService
...
Showing 581 to 590 of 5968 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11