The process cannot access the file 'C:\myapp\aspnet-core\src\myapp.Blazor\bin\Debug\net8.0\myapp.Application.Contracts.dll' because it is being used by another process. [C:\myapp\aspnet-core\src\myapp.Blazor\myapp.Blazor.csproj]
I guess the application myapp.Blazor is running, please stop it first and try again.
Hi,
Sorry for that, we will check and fix it.
Hi,
You need to override the login code.
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(LoginModel))]
public class MyLoginModel : OpenIddictSupportedLoginModel
{
public MyLoginModel(IAuthenticationSchemeProvider schemeProvider, IOptions<AbpAccountOptions> accountOptions, IAbpRecaptchaValidatorFactory recaptchaValidatorFactory, IAccountExternalProviderAppService accountExternalProviderAppService, ICurrentPrincipalAccessor currentPrincipalAccessor, IOptions<IdentityOptions> identityOptions, IOptionsSnapshot<reCAPTCHAOptions> reCaptchaOptions, AbpOpenIddictRequestHelper openIddictRequestHelper) : base(schemeProvider, accountOptions, recaptchaValidatorFactory, accountExternalProviderAppService, currentPrincipalAccessor, identityOptions, reCaptchaOptions, openIddictRequestHelper)
{
}
protected async override Task<List<ExternalProviderModel>> GetExternalProviders()
{
var providers = await base.GetExternalProviders();
var request = await OpenIddictRequestHelper.GetFromReturnUrlAsync(ReturnUrl);
if (request.ClientId = "xxx" || CurrentTenant.Id = "xxxx")
{
providers.RemoveAll(x => x.AuthenticationScheme == "Azure");
}
return providers;
}
}
Because this is a new feature in 8.2.0
You can upgrade your project version to 8.2.0-rc.5
Considering that ABP may sort all fields in UI, you can create indexes for all fields.
Here is the document(8.2 version):
https://docs.abp.io/en/abp/8.2/MongoDB#configure-indexes-and-createcollectionoptions-for-a-collection
Hi,
Sorry, I did not receive the email
Hi,
Please configure it in the ClientServiceHttpApiHostModule class
HI,
Try
await _distributedEventBus.PublishAsync(exceptionLogEto, onUnitOfWorkComplete: false);
The transaction was rolled back, so no events were published
See https://docs.abp.io/en/abp/latest/Distributed-Event-Bus#transaction-and-exception-handling