Base.Helpers.csproj
324 bytes
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
|---|---|
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <ImplicitUsings>enable</ImplicitUsings> |
| 6 | <Nullable>enable</Nullable> |
| 7 | </PropertyGroup> |
| 8 | |
| 9 | <ItemGroup> |
| 10 | <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.17.0" /> |
| 11 | </ItemGroup> |
| 12 | |
| 13 | </Project> |
| 14 | |