-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthForge.csproj
More file actions
42 lines (38 loc) · 1.72 KB
/
AuthForge.csproj
File metadata and controls
42 lines (38 loc) · 1.72 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<AssemblyName>AuthForge</AssemblyName>
<RootNamespace>AuthForge</RootNamespace>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>AuthForge</PackageId>
<Version>1.0.8</Version>
<Authors>AuthForge</Authors>
<Description>Official AuthForge SDK for .NET — credit-based license key authentication with Ed25519-verified responses.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://authforge.cc</PackageProjectUrl>
<RepositoryUrl>https://github.com/AuthForgeCC/authforge-csharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>authforge;license;licensing;hwid;authentication</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Encodings.Web" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Compile Remove="AuthForge.Tests/**" />
<None Remove="AuthForge.Tests/**" />
<EmbeddedResource Remove="AuthForge.Tests/**" />
<Compile Remove="GenerateVectors.cs" />
</ItemGroup>
</Project>