forked from clinically-au/kinde-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Clinically.Kinde.Authentication.csproj
36 lines (31 loc) · 1.65 KB
/
Clinically.Kinde.Authentication.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Description>A library integrating Kinde authentication with NET8 ASP NET Core Identity and JWT Bearer Authentication</Description>
<RepositoryUrl>https://github.com/clinically-au/kinde-authentication.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/clinically-au/kinde-authentication</PackageProjectUrl>
<AssemblyName>Clinically.Kinde.Authentication</AssemblyName>
<Version>1.3.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RootNamespace>Clinically.Kinde.Authentication</RootNamespace>
<PackageId>Clinically.Kinde.Authentication</PackageId>
<PackageLicenseUrl>https://licenses.nuget.org/GPL-3.0-or-later</PackageLicenseUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageTags>net8 blazor kinde</PackageTags>
</PropertyGroup>
<Target Name="PrintPackageVersion">
<Message Text="$(PackageVersion)" Importance="high"/>
</Target>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.4" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Polly" Version="8.3.1" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>