I am just starting to look into using SnapDevelop to possibly migrate our application and I have been having a difficult time with the demos because it seems that things do not match. I am using SnapDevelop 2019 R3 Build 2622.
I have moved onto trying JWT and I am again not able to do what the demo says. I try to add the following to my startup:
using Microsoft.AspNetCore.Authentication.jwtbearer;
And I get an error that jwtbearer does not exist in the namespace Microsoft.AspNetCore.Authentication
I tried using the NuGet to install Microsoft.AspNetCore.Authentication.JwtBearer (which is version 5.0.2) and I get another error that it is not compatible with netcoreapp3.1 and that it supports .NetCoreApp Version 5.0.
I am not sure how to update .NetCoreApp to 5.0?
Instead, can I install a lesser version of JWTBearer (3.1.11)?
Thanks!
Brian