-
Notifications
You must be signed in to change notification settings - Fork 0
/
BlazorVerificationCaptcha.csproj
49 lines (44 loc) · 1.96 KB
/
BlazorVerificationCaptcha.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
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<Title>BlazorVerificationCaptcha</Title>
<PackageId>BlazorVerificationCaptcha</PackageId>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>liebki</Authors>
<Description>A simple solution to verify users by solving a simple captcha, all done locally without disrespecting privacy</Description>
<Copyright>liebki</Copyright>
<PackageProjectUrl>https://github.com/liebki/BlazorVerificationCaptcha</PackageProjectUrl>
<PackageIcon>uxwing-icon.png</PackageIcon>
<RepositoryUrl>https://github.com/liebki/BlazorVerificationCaptcha</RepositoryUrl>
<PackageTags>captcha, alternative, simple, blazor, recaptcha alternative</PackageTags>
<PackageReleaseNotes>This update introduces customizable CAPTCHA length, dynamic image dimensions based on length, adjustable image quality, and various refinements for improved functionality.</PackageReleaseNotes>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>0.1.2</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.3" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.88.3" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="uxwing-icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>