I am trying to use .NET 6 and create a Native windows client and library. I am having issues finding a solution to retrieve a user / token with the library.
using Auth0.OidcClient;
Auth0ClientOptions clientOptions = new Auth0ClientOptions
{
Domain = "XXXX",
ClientId = "XXXX"
};
var client = new Auth0Client(clientOptions);
The above works fine in .NET 4.7… I am just looking for a .NET 6 solution.
It appears OidcClient has not been ported to .NET 6 yet. Is this something that is going to happen? If not, is there an alternative solution?
Are there plans to support Maui?
Thanks for any help in advance you may provide,
Brad