-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathSimpleAuthentication.Abstractions.csproj
More file actions
50 lines (43 loc) · 2.27 KB
/
SimpleAuthentication.Abstractions.csproj
File metadata and controls
50 lines (43 loc) · 2.27 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<RootNamespace>SimpleAuthentication</RootNamespace>
<DocumentationFile>SimpleAuthentication.Abstractions.xml</DocumentationFile>
<Authors>Marco Minerva</Authors>
<Company>Marco Minerva</Company>
<Product>Common types and interfaces for Simple Authentication for ASP.NET Core</Product>
<Title>Common types and interfaces for Simple Authentication for ASP.NET Core</Title>
<Description>A library that provides common types and interfaces that are used by Simple Authentication</Description>
<PackageId>SimpleAuthenticationTools.Abstractions</PackageId>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/marcominerva/SimpleAuthentication</PackageProjectUrl>
<PackageIcon>Toolbox.png</PackageIcon>
<PackageTags>csharp visualstudio aspnetcore webapi minimal-api authentication jwt jwt-bearer apikey apikey-authentication basic-authentication utilities helpers</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/marcominerva/SimpleAuthentication.git</RepositoryUrl>
<RepositoryBranch>master</RepositoryBranch>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Remove="SimpleAuthentication.Abstractions.xml" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.18" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.7" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Toolbox.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="SimpleAuthentication" />
</ItemGroup>
</Project>