-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathSimpleAuthentication.csproj
More file actions
53 lines (45 loc) · 2.2 KB
/
SimpleAuthentication.csproj
File metadata and controls
53 lines (45 loc) · 2.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<DocumentationFile>SimpleAuthentication.xml</DocumentationFile>
<Authors>Marco Minerva</Authors>
<Company>Marco Minerva</Company>
<Product>Simple Authentication for ASP.NET Core</Product>
<Title>Simple Authentication for ASP.NET Core</Title>
<Description>A library to easily integrate Authentication in ASP.NET Core projects</Description>
<PackageId>SimpleAuthenticationTools</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.xml" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.14" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SimpleAuthenticationTools.Abstractions" Version="3.1.10" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Toolbox.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>