It actually worked. Thanks very much!
BTW, my solution is an Angular font end with .NET core API backend.
I did a full text search and I did not find any project that depends on AbpAccountWebModule?
I just tried on the start-up template (bookstore) and put the code in the Bookstore.Application project and still did not work?
public class BookstoreApplicationModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpAutoMapperOptions>(options =>
{
options.AddMaps<CROMS3ApplicationModule>();
});
}
public override void PreConfigureServices(ServiceConfigurationContext context)
{
context.Services.PreConfigure<IdentityBuilder>(options =>
{
options.Services.Replace(ServiceDescriptor
.Scoped<IPasswordHasher<Volo.Abp.Identity.IdentityUser>,
Md5PasswordHasher<Volo.Abp.Identity.IdentityUser>>());
});
}
```
Hi Thanks for getting back to you.
Is this what you meant: