hi
What is the logs of http 502?
Thanks.
hi
Logging out and logging in again from https://abp.io may help.
Can you try that?
Thanks.
hi
You can create a new and the same name commercial project and check it in the appsettings.json file.
Thanks.
我无法build你的项目, 他需要很多包我无法还原.
请注入并检查下这个Options的值
var bundlingOptions = context.ServiceProvider.GetRequiredService<IOptions<AbpBundlingOptions>>().Value;
//debug to check bundlingOptions.GlobalAssets
请分享一个项目复现问题.
liming.ma@volosoft.com
hi
Can you try logging in to the Bryan-EDV account in the CLI?
Thanks.
hi
Checking the source code in remote meetings will be very slow. If you can share a project recurrence problem, we will troubleshoot and resolve it as quickly as possible.
Thanks
hi
I see, you can follow the https://github.com/alkampfergit/DotNetCoreOauth2 to get an access token and to override the IEmailSender service to send the email.
context.Services.Replace(ServiceDescriptor.Singleton<IEmailSender, YourOffice365EmailSender>());
public class YourOffice365EmailSender : EmailSenderBase
{
public YourOffice365EmailSender(ICurrentTenant currentTenant, IEmailSenderConfiguration configuration, IBackgroundJobManager backgroundJobManager)
: base(currentTenant, configuration, backgroundJobManager)
{
}
protected override Task SendEmailAsync(MailMessage mail)
{
return Task.CompletedTask;
}
}
Thanks.