Closed SuperJMN closed 7 years ago
We are working on it.
Do you have an estimated release plan? We need to connect to our corporate Active Directory Federation Services from ASP.NET and we don't know any alternative to your library :(
Please, share as much information as you can.
Thank you!
I just pushed 2.0.0-rc1 to nuget. Give it a try.
Tracking this in #72.
I am a bit confused. Why is the issue closed?
I tried 2.0.0-rc1 and I am still facing the same problem (“Reference to type 'AuthenticationOptions' claims it is defined in 'Microsoft.AspNetCore.Authentication', but it could not be found”).
Any solutions?
I am just using the following code in the client side app.UseIdentityServerAuthentication( new IdentityServerAuthenticationOptions { Authority = "http://localhost:5000", RequireHttpsMetadata = false, ValidateScope = true, ApiName = apiName, //AutomaticAuthenticate = true, //AutomaticChallenge = true, AllowedScopes = { apiName }, EnableCaching=false // TODO: =true , ApiSecret= "blabla"//.Sha256() });
Does it means that we have to use other libraries for the client (API) which do not support introspection till the issue get solved?
We pushed a rc1 to nuget.
With 2.0.0-rc1, I get
'IApplicationBuilder' does not contain a definition for 'UseIdentityServerAuthentication' and no extension method 'UseIdentityServerAuthentication' accepting a first argument of type 'IApplicationBuilder' could be found
a bit maddening. Can't see the extension method anywhere in the Object Browser either. If I roll back to 1.2.1, then I can see the method in the Object Browser, but then I get the
Reference to type 'AuthenticationOptions' claims it is defined in 'Microsoft.AspNetCore.Authentication', but it could not be found
Having flashbacks to the 90s. :) Not trying to rush anyone, just curious, is the only way forward right now with ID4.Validation to drop my project back to Core 1?
@TheFrogPrince UseIdentityServerAuthentication
is gone:
Ah... thank you.
It hurts less when I quit banging my head against the wall. :)
@TheFrogPrince It's also refreshing to realize you're not the only one to bang it against your lowly wall ^^
error CS7069: Reference to type 'AuthenticationOptions' claims it is defined in 'Microsoft.AspNetCore.Authentication', but it could not be found
Is it caused because this library is incompatible with ASP.NET Core 2.0?
Please, tell us if it's going to be fixed soon. Thanks!