Bruno Piovan
Bruno Piovan
Did you find a solutio. To this?
this should get you started... ``` using System.IdentityModel.Tokens.Jwt; using System.Security.Cryptography.X509Certificates; using System.Text.Json; using Microsoft.IdentityModel.Tokens; const string attestationStatementString = "token here"; const string validHostName = "attest.android.com"; var token = new JwtSecurityToken(attestationStatementString);...
I had the same issue, which seems to be caused by `MapStaticAssets()` when NSwag.MSBuild runs the project, I fixed it by replacing it with: ``` if (app.Environment.IsDevelopment()) { var assemblyTitle...