-
Notifications
You must be signed in to change notification settings - Fork 8
/
HCaptcha.AspNetCore.csproj
38 lines (32 loc) · 1.27 KB
/
HCaptcha.AspNetCore.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
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Product>HCaptcha for ASP.NET Core</Product>
<AssemblyName>BenjaminAbt.HCaptcha.AspNetCore</AssemblyName>
<RootNamespace>BenjaminAbt.HCaptcha.AspNetCore</RootNamespace>
<DebugType>embedded</DebugType>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>HCaptcha.AspNetCore</PackageId>
<Version>0.0.1</Version>
<Authors>Benjamin Abt</Authors>
<Company>Benjamin Abt</Company>
<PackageTags>hCaptcha; Bot Check</PackageTags>
<Description>
This inofficial client library enables working with hCaptcha.com with ASP.NET Core.
</Description>
<owners>Benjamin Abt</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectUrl>https://github.com/BenjaminAbt/hcaptcha</projectUrl>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Refit.HttpClientFactory" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HCaptcha\HCaptcha.csproj" />
</ItemGroup>
</Project>