28 de enero 2023

main
unknown 2 years ago
parent 6c03e9187a
commit e38ee71d04
  1. 1
      AMAZONBackend/AMAZONBackend.csproj
  2. 3
      AMAZONBackend/Controllers/AuthController.cs
  3. 19
      AMAZONBackend/Program.cs
  4. 57
      AMAZONBackend/bin/Debug/net6.0/AMAZONBackend.deps.json
  5. BIN
      AMAZONBackend/bin/Debug/net6.0/AMAZONBackend.dll
  6. BIN
      AMAZONBackend/bin/Debug/net6.0/AMAZONBackend.pdb
  7. BIN
      AMAZONBackend/bin/Debug/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll
  8. BIN
      AMAZONBackend/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
  9. BIN
      AMAZONBackend/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll
  10. 4
      AMAZONBackend/obj/AMAZONBackend.csproj.nuget.dgspec.json
  11. BIN
      AMAZONBackend/obj/Debug/net6.0/AMAZONBackend.assets.cache
  12. BIN
      AMAZONBackend/obj/Debug/net6.0/AMAZONBackend.csproj.AssemblyReference.cache
  13. 2
      AMAZONBackend/obj/Debug/net6.0/AMAZONBackend.csproj.CoreCompileInputs.cache
  14. 3
      AMAZONBackend/obj/Debug/net6.0/AMAZONBackend.csproj.FileListAbsolute.txt
  15. BIN
      AMAZONBackend/obj/Debug/net6.0/AMAZONBackend.dll
  16. BIN
      AMAZONBackend/obj/Debug/net6.0/AMAZONBackend.pdb
  17. BIN
      AMAZONBackend/obj/Debug/net6.0/ref/AMAZONBackend.dll
  18. BIN
      AMAZONBackend/obj/Debug/net6.0/refint/AMAZONBackend.dll
  19. 111
      AMAZONBackend/obj/project.assets.json
  20. 5
      AMAZONBackend/obj/project.nuget.cache

@ -11,6 +11,7 @@
<PackageReference Include="DinkToPdf" Version="1.0.8" /> <PackageReference Include="DinkToPdf" Version="1.0.8" />
<PackageReference Include="ExcelDataReader" Version="3.6.0" /> <PackageReference Include="ExcelDataReader" Version="3.6.0" />
<PackageReference Include="ExcelDataReader.DataSet" Version="3.6.0" /> <PackageReference Include="ExcelDataReader.DataSet" Version="3.6.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.13" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" /> <PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" /> <PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.26.0" /> <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.26.0" />

@ -132,7 +132,8 @@ namespace AMAZONBackend.Controllers
[HttpGet] [HttpGet]
public IActionResult GetValidation() public IActionResult GetValidation()
{ {
return StatusCode(200, "Its Ok"); return StatusCode(200, "Its Ok");
} }
} }

@ -11,6 +11,9 @@ using AMAZONBackend.Services.ValidarFraccion;
using DinkToPdf; using DinkToPdf;
using DinkToPdf.Contracts; using DinkToPdf.Contracts;
using AMAZONBackend.Clientes.Amazon.Repository; using AMAZONBackend.Clientes.Amazon.Repository;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.IdentityModel.Tokens;
using System.Text;
var builder = WebApplication.CreateBuilder(args); var builder = WebApplication.CreateBuilder(args);
@ -36,6 +39,22 @@ builder.Services.AddScoped<IFilePaths4ProcessRepository, FilePaths4ProcessReposi
builder.Services.AddScoped<IPDFGenerator, PDFGenerator>(); builder.Services.AddScoped<IPDFGenerator, PDFGenerator>();
builder.Services.AddScoped<IValidaFraccion, SrvValidaFraccion>(); builder.Services.AddScoped<IValidaFraccion, SrvValidaFraccion>();
builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme).AddJwtBearer(options =>
{
options.RequireHttpsMetadata = false;
options.SaveToken = true;
options.TokenValidationParameters = new TokenValidationParameters()
{
ValidateIssuer = true,
ValidateAudience = true,
ValidAudience = builder.Configuration["Jwt:Audience"],
ValidIssuer = builder.Configuration["Jwt:Issuer"],
IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(builder.Configuration["Jwt:Key"]))
};
});
//services cors //services cors
builder.Services.AddCors(p => p.AddPolicy("corsapp", builder => builder.Services.AddCors(p => p.AddPolicy("corsapp", builder =>

@ -12,6 +12,7 @@
"DinkToPdf": "1.0.8", "DinkToPdf": "1.0.8",
"ExcelDataReader": "3.6.0", "ExcelDataReader": "3.6.0",
"ExcelDataReader.DataSet": "3.6.0", "ExcelDataReader.DataSet": "3.6.0",
"Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.13",
"Swashbuckle.AspNetCore": "6.2.3", "Swashbuckle.AspNetCore": "6.2.3",
"System.Data.SqlClient": "4.8.5", "System.Data.SqlClient": "4.8.5",
"System.IdentityModel.Tokens.Jwt": "6.26.0" "System.IdentityModel.Tokens.Jwt": "6.26.0"
@ -64,6 +65,17 @@
} }
} }
}, },
"Microsoft.AspNetCore.Authentication.JwtBearer/6.0.13": {
"dependencies": {
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
"assemblyVersion": "6.0.13.0",
"fileVersion": "6.0.1322.58013"
}
}
},
"Microsoft.CSharp/4.5.0": {}, "Microsoft.CSharp/4.5.0": {},
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, "Microsoft.Extensions.ApiDescription.Server/3.0.0": {},
"Microsoft.IdentityModel.Abstractions/6.26.0": { "Microsoft.IdentityModel.Abstractions/6.26.0": {
@ -99,6 +111,30 @@
} }
} }
}, },
"Microsoft.IdentityModel.Protocols/6.10.0": {
"dependencies": {
"Microsoft.IdentityModel.Logging": "6.26.0",
"Microsoft.IdentityModel.Tokens": "6.26.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
"assemblyVersion": "6.10.0.0",
"fileVersion": "6.10.0.20330"
}
}
},
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
"dependencies": {
"Microsoft.IdentityModel.Protocols": "6.10.0",
"System.IdentityModel.Tokens.Jwt": "6.26.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
"assemblyVersion": "6.10.0.0",
"fileVersion": "6.10.0.20330"
}
}
},
"Microsoft.IdentityModel.Tokens/6.26.0": { "Microsoft.IdentityModel.Tokens/6.26.0": {
"dependencies": { "dependencies": {
"Microsoft.CSharp": "4.5.0", "Microsoft.CSharp": "4.5.0",
@ -918,6 +954,13 @@
"path": "exceldatareader.dataset/3.6.0", "path": "exceldatareader.dataset/3.6.0",
"hashPath": "exceldatareader.dataset.3.6.0.nupkg.sha512" "hashPath": "exceldatareader.dataset.3.6.0.nupkg.sha512"
}, },
"Microsoft.AspNetCore.Authentication.JwtBearer/6.0.13": {
"type": "package",
"serviceable": true,
"sha512": "sha512-D8d0GzKZHFVw2Mru8JUEakQ2eF8obICVtbGFvHsoXmVVQOFkDYRpLaDSMwD4CIeecQNMgriozRRZFJ3kf+Ib+Q==",
"path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.13",
"hashPath": "microsoft.aspnetcore.authentication.jwtbearer.6.0.13.nupkg.sha512"
},
"Microsoft.CSharp/4.5.0": { "Microsoft.CSharp/4.5.0": {
"type": "package", "type": "package",
"serviceable": true, "serviceable": true,
@ -953,6 +996,20 @@
"path": "microsoft.identitymodel.logging/6.26.0", "path": "microsoft.identitymodel.logging/6.26.0",
"hashPath": "microsoft.identitymodel.logging.6.26.0.nupkg.sha512" "hashPath": "microsoft.identitymodel.logging.6.26.0.nupkg.sha512"
}, },
"Microsoft.IdentityModel.Protocols/6.10.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==",
"path": "microsoft.identitymodel.protocols/6.10.0",
"hashPath": "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512"
},
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==",
"path": "microsoft.identitymodel.protocols.openidconnect/6.10.0",
"hashPath": "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512"
},
"Microsoft.IdentityModel.Tokens/6.26.0": { "Microsoft.IdentityModel.Tokens/6.26.0": {
"type": "package", "type": "package",
"serviceable": true, "serviceable": true,

@ -60,6 +60,10 @@
"target": "Package", "target": "Package",
"version": "[3.6.0, )" "version": "[3.6.0, )"
}, },
"Microsoft.AspNetCore.Authentication.JwtBearer": {
"target": "Package",
"version": "[6.0.13, )"
},
"Swashbuckle.AspNetCore": { "Swashbuckle.AspNetCore": {
"target": "Package", "target": "Package",
"version": "[6.2.3, )" "version": "[6.2.3, )"

@ -1 +1 @@
aeaf918861cb52f37748641f9f59631b92c60075 b862e9d55045ca53c7e09af229106f076843818e

@ -45,3 +45,6 @@ C:\Projects\staging\AMAZONB\AMAZONBackend\AMAZONBackend\bin\Debug\net6.0\Microso
C:\Projects\staging\AMAZONB\AMAZONBackend\AMAZONBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll C:\Projects\staging\AMAZONB\AMAZONBackend\AMAZONBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll
C:\Projects\staging\AMAZONB\AMAZONBackend\AMAZONBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll C:\Projects\staging\AMAZONB\AMAZONBackend\AMAZONBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll
C:\Projects\staging\AMAZONB\AMAZONBackend\AMAZONBackend\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll C:\Projects\staging\AMAZONB\AMAZONBackend\AMAZONBackend\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll
C:\Projects\staging\AMAZONB\AMAZONBackend\AMAZONBackend\bin\Debug\net6.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
C:\Projects\staging\AMAZONB\AMAZONBackend\AMAZONBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll
C:\Projects\staging\AMAZONB\AMAZONBackend\AMAZONBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll

@ -66,6 +66,25 @@
} }
} }
}, },
"Microsoft.AspNetCore.Authentication.JwtBearer/6.0.13": {
"type": "package",
"dependencies": {
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0"
},
"compile": {
"lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
"related": ".xml"
}
},
"frameworkReferences": [
"Microsoft.AspNetCore.App"
]
},
"Microsoft.CSharp/4.5.0": { "Microsoft.CSharp/4.5.0": {
"type": "package", "type": "package",
"compile": { "compile": {
@ -134,6 +153,40 @@
} }
} }
}, },
"Microsoft.IdentityModel.Protocols/6.10.0": {
"type": "package",
"dependencies": {
"Microsoft.IdentityModel.Logging": "6.10.0",
"Microsoft.IdentityModel.Tokens": "6.10.0"
},
"compile": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
"related": ".xml"
}
}
},
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
"type": "package",
"dependencies": {
"Microsoft.IdentityModel.Protocols": "6.10.0",
"System.IdentityModel.Tokens.Jwt": "6.10.0"
},
"compile": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
"related": ".xml"
}
}
},
"Microsoft.IdentityModel.Tokens/6.26.0": { "Microsoft.IdentityModel.Tokens/6.26.0": {
"type": "package", "type": "package",
"dependencies": { "dependencies": {
@ -1648,6 +1701,21 @@
"lib/netstandard2.0/ExcelDataReader.DataSet.xml" "lib/netstandard2.0/ExcelDataReader.DataSet.xml"
] ]
}, },
"Microsoft.AspNetCore.Authentication.JwtBearer/6.0.13": {
"sha512": "D8d0GzKZHFVw2Mru8JUEakQ2eF8obICVtbGFvHsoXmVVQOFkDYRpLaDSMwD4CIeecQNMgriozRRZFJ3kf+Ib+Q==",
"type": "package",
"path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.13",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.TXT",
"lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
"lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
"microsoft.aspnetcore.authentication.jwtbearer.6.0.13.nupkg.sha512",
"microsoft.aspnetcore.authentication.jwtbearer.nuspec"
]
},
"Microsoft.CSharp/4.5.0": { "Microsoft.CSharp/4.5.0": {
"sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
"type": "package", "type": "package",
@ -1806,6 +1874,44 @@
"microsoft.identitymodel.logging.nuspec" "microsoft.identitymodel.logging.nuspec"
] ]
}, },
"Microsoft.IdentityModel.Protocols/6.10.0": {
"sha512": "DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==",
"type": "package",
"path": "microsoft.identitymodel.protocols/6.10.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net45/Microsoft.IdentityModel.Protocols.dll",
"lib/net45/Microsoft.IdentityModel.Protocols.xml",
"lib/net461/Microsoft.IdentityModel.Protocols.dll",
"lib/net461/Microsoft.IdentityModel.Protocols.xml",
"lib/net472/Microsoft.IdentityModel.Protocols.dll",
"lib/net472/Microsoft.IdentityModel.Protocols.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
"microsoft.identitymodel.protocols.6.10.0.nupkg.sha512",
"microsoft.identitymodel.protocols.nuspec"
]
},
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
"sha512": "LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==",
"type": "package",
"path": "microsoft.identitymodel.protocols.openidconnect/6.10.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512",
"microsoft.identitymodel.protocols.openidconnect.nuspec"
]
},
"Microsoft.IdentityModel.Tokens/6.26.0": { "Microsoft.IdentityModel.Tokens/6.26.0": {
"sha512": "mFNbROC89eap6GTqoYcInCiYsaV8sLxPsgCurQnJDcJoLBk7XoAJpBJae6rkj2VEzWqfErd4jlzaqqRI7wjGOQ==", "sha512": "mFNbROC89eap6GTqoYcInCiYsaV8sLxPsgCurQnJDcJoLBk7XoAJpBJae6rkj2VEzWqfErd4jlzaqqRI7wjGOQ==",
"type": "package", "type": "package",
@ -5432,6 +5538,7 @@
"DinkToPdf >= 1.0.8", "DinkToPdf >= 1.0.8",
"ExcelDataReader >= 3.6.0", "ExcelDataReader >= 3.6.0",
"ExcelDataReader.DataSet >= 3.6.0", "ExcelDataReader.DataSet >= 3.6.0",
"Microsoft.AspNetCore.Authentication.JwtBearer >= 6.0.13",
"Swashbuckle.AspNetCore >= 6.2.3", "Swashbuckle.AspNetCore >= 6.2.3",
"System.Data.SqlClient >= 4.8.5", "System.Data.SqlClient >= 4.8.5",
"System.IdentityModel.Tokens.Jwt >= 6.26.0" "System.IdentityModel.Tokens.Jwt >= 6.26.0"
@ -5497,6 +5604,10 @@
"target": "Package", "target": "Package",
"version": "[3.6.0, )" "version": "[3.6.0, )"
}, },
"Microsoft.AspNetCore.Authentication.JwtBearer": {
"target": "Package",
"version": "[6.0.13, )"
},
"Swashbuckle.AspNetCore": { "Swashbuckle.AspNetCore": {
"target": "Package", "target": "Package",
"version": "[6.2.3, )" "version": "[6.2.3, )"

@ -1,6 +1,6 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "or7ueChzmC7tDwcoeP1Z8uqGZSeIRhS1JlA2FlZkOW88S/cpklfddv82ej4hSSeSr4sVcRlikNpof73mCXNl9A==", "dgSpecHash": "Jso3VEy/pXYr91WOrQH8uljXIJOu53vSH8Ci14/dSvXiY33vSXi7XgBJJQOnjcfDEN/1rsWTQXJ1tvAq6+3z6A==",
"success": true, "success": true,
"projectFilePath": "C:\\Projects\\staging\\AMAZONB\\AMAZONBackend\\AMAZONBackend\\AMAZONBackend.csproj", "projectFilePath": "C:\\Projects\\staging\\AMAZONB\\AMAZONBackend\\AMAZONBackend\\AMAZONBackend.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [
@ -8,11 +8,14 @@
"C:\\Users\\Luis Rendon\\.nuget\\packages\\dinktopdf\\1.0.8\\dinktopdf.1.0.8.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\dinktopdf\\1.0.8\\dinktopdf.1.0.8.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\exceldatareader\\3.6.0\\exceldatareader.3.6.0.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\exceldatareader\\3.6.0\\exceldatareader.3.6.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\exceldatareader.dataset\\3.6.0\\exceldatareader.dataset.3.6.0.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\exceldatareader.dataset\\3.6.0\\exceldatareader.dataset.3.6.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\6.0.13\\microsoft.aspnetcore.authentication.jwtbearer.6.0.13.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.26.0\\microsoft.identitymodel.abstractions.6.26.0.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.26.0\\microsoft.identitymodel.abstractions.6.26.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.26.0\\microsoft.identitymodel.jsonwebtokens.6.26.0.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.26.0\\microsoft.identitymodel.jsonwebtokens.6.26.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.identitymodel.logging\\6.26.0\\microsoft.identitymodel.logging.6.26.0.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.identitymodel.logging\\6.26.0\\microsoft.identitymodel.logging.6.26.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.10.0\\microsoft.identitymodel.protocols.6.10.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.10.0\\microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.26.0\\microsoft.identitymodel.tokens.6.26.0.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.26.0\\microsoft.identitymodel.tokens.6.26.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
"C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", "C:\\Users\\Luis Rendon\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",

Loading…
Cancel
Save