Hi,
I want to use IdentityServer4 with abp .net core but i can't there are couple problems that i face
could you please let me know how to do this ?
i want to use this example with abp dotnetcore framework
<a class="postlink" href="http://docs.identityserver.io/en/release/quickstarts/6_aspnet_identity.html">http://docs.identityserver.io/en/releas ... ntity.html</a>
My ConfigureServices method contains
return services.AddAbp<EventoTixWebModule>(options =>
{
//Configure Log4Net logging
options.IocManager.IocContainer.AddFacility<LoggingFacility>(
f => f.UseAbpLog4Net().WithConfig("log4net.config")
);
});
My configure method contains
app.UseAbp();
app.UseAppBuilder(ConfigureOwinServices);
And that's the exception
'Microsoft.AspNetCore.Identity.UserManager`1[[EventoTix.Users.User, EventoTix.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]_b66a8aa6-a49b-47c6-a3b3-d6e943ee4c47' is waiting for the following dependencies:
-
Service 'Microsoft.AspNetCore.Identity.IUserStore`1[[EventoTix.Users.User, EventoTix.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' which was not registered.