-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthSharp.SDK.csproj
More file actions
50 lines (44 loc) · 2.2 KB
/
AuthSharp.SDK.csproj
File metadata and controls
50 lines (44 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net48;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<Nullable>disable</Nullable>
<!-- Suppress TFM support warnings for System.Management on older frameworks -->
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<!-- Suppress BouncyCastle.Cryptography compatibility warning for .NET Standard -->
<NoWarn>$(NoWarn);NU1701</NoWarn>
<!-- NuGet Package Metadata -->
<PackageId>AuthSharp.SDK</PackageId>
<Version>1.0.0</Version>
<Authors>AuthSharp</Authors>
<Company>AuthSharp</Company>
<Description>AuthSharp SDK - A comprehensive authentication and licensing SDK for .NET applications</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/AuthSharp/AuthSharp.SDK.CSharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/AuthSharp/AuthSharp.SDK.CSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>authentication;authorization;licensing;sdk;security</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
<Reference Include="System.Net.Http" />
<Reference Include="System.Web" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net48'">
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="RestSharp" Version="112.1.0" />
<PackageReference Include="System.Management" Version="9.0.10" />
</ItemGroup>
</Project>