-
Notifications
You must be signed in to change notification settings - Fork 0
/
NextCaptcha.csproj
25 lines (22 loc) · 1.08 KB
/
NextCaptcha.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>NextCaptchaSDK</PackageId>
<Version>1.0.0</Version>
<Authors>nextcaptcha</Authors>
<Company>nextcaptcha</Company>
<Description>NextCaptcha SDK for C# - Easily integrate captcha solving capabilities into your C# projects.</Description>
<PackageProjectUrl>https://github.con/nextcaptcha/nextcaptcha-csharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/nextcaptcha/nextcaptcha-csharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>captcha, recaptcha, hcaptcha, funcaptcha, sdk, C#</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<None Include="README.md" pack="true" PackagePath="." />
</ItemGroup>
</Project>