Hi
I'm trying to use custom auth taken from the wonderful book written by adrian hall
https://adrianhall.github.io/develop-mobile-apps-with-csharp-and-azure/chapter2/custom/
But I'm in trouble with the next code in IHttpActionResult Post([FromBody] User body)
.....
System.IdentityModel.Tokens.Jwt.JwtSecurityToken token = Microsoft.Azure.Mobile.Server.Login.AppServiceLoginHandler.CreateToken(
.....
I get an error "Reference to type JwtSecurityToken claims is defined in 'System.IdentityModel.Tokens.Jwt,, but it could not be found"
If I downgrade the nget System.IdentityModel.Tokens.Jwtback to 4.0.20622.1351 I can solve: but how can I solve if I want use the vers. 5.0 ??
Tnx