-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLogto.AspNetCore.Authentication.csproj
More file actions
49 lines (43 loc) · 2.02 KB
/
Logto.AspNetCore.Authentication.csproj
File metadata and controls
49 lines (43 loc) · 2.02 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
</PropertyGroup>
<PropertyGroup>
<PackageId>Logto.AspNetCore.Authentication</PackageId>
<Version>0.2.0</Version>
<Description>Logto ASP.Net Core authentication SDK.</Description>
<Authors>Logto</Authors>
<Company>Silverhand, Inc.</Company>
<Copyright>Silverhand, Inc.</Copyright>
<PackageTags>logto;auth;authentication;identity;oauth2;openid-connect;oidc</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>Logto.png</PackageIcon>
<PackageProjectUrl>https://logto.io/</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/logto-io/csharp</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect"
Version="6.0.*"
Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="6.*"
Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect"
Version="7.0.*"
Condition="'$(TargetFramework)' == 'net7.0'" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect"
Version="8.0.*"
Condition="'$(TargetFramework)' == 'net8.0'" />
<PackageReference Include="System.Text.Encodings.Web" Version="4.7.2" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="Logto.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>