public async Task ConfigureMenuAsync(MenuConfigurationContext context)
{
//resolve Solution App Service dependency
_solutionsAppService = context.ServiceProvider.GetRequiredService<ISolutionsAppService>();
//resolve Project App Service dependency
_projectsAppService = context.ServiceProvider.GetRequiredService<IProjectsAppService>();
if (context.Menu.Name == StandardMenus.Main)
{
await ConfigureMainMenuAsync(context);
}
}
public async Task ConfigureMenuAsync(MenuConfigurationContext context)
{
if (context.Menu.Name == StandardMenus.Main)
{
//resolve Solution App Service dependency
_solutionsAppService = context.ServiceProvider.GetRequiredService<ISolutionsAppService>();
//resolve Project App Service dependency
_projectsAppService = context.ServiceProvider.GetRequiredService<IProjectsAppService>();
await ConfigureMainMenuAsync(context);
}
}
I have reproduced the problem and checking it.
We have to ensure that all projects in the microservice use the same DefaultPassPhrase
hi
https://zoom.us/j/96635720506?pwd=TXlqSmVqRGhIWEVBQmF6MEt0cFlBQT09
HI
Can you make the above changes and resend the project ?
Please share some structure and code info, I can't remotely now. thanks,
Online session will not help much, please share your code details.
hi
Does your project have EntityFrameworkCore.DbMigrations?
https://community.abp.io/articles/unifying-dbcontexts-for-ef-core-removing-the-ef-core-migrations-project-nsyhrtna
hi
You can try to read the setting to see if it takes effect. https://docs.abp.io/en/abp/latest/Settings#setting-value-providers https://github.com/abpframework/abp-samples/tree/master/EmailSendDemo
The Password of Abp.Mailing.Smtp.Password in appsettings.json file needs to encrypt! Please use the IStringEncryptionService to encrypt the plain text password. Note that encryption may be affected by the configuration of StringEncryption:DefaultPassPhrase in appsettings.json.