-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathAuth0.AspNetCore.Authentication.csproj
More file actions
57 lines (52 loc) · 2.59 KB
/
Auth0.AspNetCore.Authentication.csproj
File metadata and controls
57 lines (52 loc) · 2.59 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
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0;net10.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.*" 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="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.*" Condition="'$(TargetFramework)' == 'net10.0'" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.14.0" />
<PackageReference Include="System.Text.Encodings.Web" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<None Remove="BackchannelLogout\" />
</ItemGroup>
<ItemGroup>
<None Include="Auth0Icon.png" Pack="true" Visible="false" PackagePath="" />
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<PropertyGroup>
<Product>Auth0.AspNetCore.Authentication</Product>
<Description>Auth0 authentication middleware for ASP.NET Core.</Description>
<Copyright>Auth0® Inc.</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<Authors>Auth0</Authors>
<PackageTags>auth0;authentication;openid connect;oidc;oauth2</PackageTags>
<PackageIconUrl>https://secure.gravatar.com/avatar/805765c256ff8617fcad483b5476faf2</PackageIconUrl>
<PackageIcon>Auth0Icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/auth0/auth0-aspnetcore-authentication</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/auth0/auth0-aspnetcore-authentication</RepositoryUrl>
<PackageReleaseNotes>
https://github.com/auth0/auth0-aspnetcore-authentication/blob/master/CHANGELOG.md
</PackageReleaseNotes>
<CLSCompliant>true</CLSCompliant>
<ComVisible>false</ComVisible>
<Nullable>enable</Nullable>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<Version>1.5.1</Version>
</PropertyGroup>
<PropertyGroup>
<AssemblyVersion>$(Version)</AssemblyVersion>
<AssemblyFileVersion>$(Version)</AssemblyFileVersion>
<InformationalVersion>$(Version)</InformationalVersion>
<PackageVersion>$(Version)</PackageVersion>
</PropertyGroup>
</Project>