Skip to content

Commit 43a51e0

Browse files
authored
Merge pull request #15 from maliming/net9
Update to NET 9.0.
2 parents c4ddff2 + d8fdb22 commit 43a51e0

8 files changed

Lines changed: 24 additions & 5 deletions

File tree

.github/workflows/dotnetcore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup .NET Core
1616
uses: actions/setup-dotnet@v4
1717
with:
18-
dotnet-version: 8.0.x
18+
dotnet-version: 9.0.x
1919
- name: Build with dotnet
2020
run: dotnet build -c Release
2121
- name: Test with dotnet

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# Owl.reCAPTCHA
22
Google reCAPTCHA for ASP NET Core (v3 and v2)
33

4+
# Demo
5+
6+
V3:
7+
8+
![V3](gif/V3_Demo.gif)
9+
10+
V3 Programmatically:
11+
12+
![V3 Programmatically](gif/V3_Programmatically_Demo.gif)
13+
14+
V2 Invisible:
15+
16+
![V2_Invisible](gif/V2_Invisible.gif)
17+
18+
V2 Checkbox:
19+
20+
![V2_Checkbox](gif/V2_Checkbox.gif)
21+
22+
423
# Install-Package
524

625
```

demo/reCAPTCHA.Demo/reCAPTCHA.Demo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

gif/V2_Checkbox.gif

756 KB
Loading

gif/V2_Invisible.gif

612 KB
Loading

gif/V3_Demo.gif

764 KB
Loading

gif/V3_Programmatically_Demo.gif

560 KB
Loading

src/Owl.reCAPTCHA/Owl.reCAPTCHA.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<RootNamespace>Owl.reCAPTCHA</RootNamespace>
66
<PackageId>Owl.reCAPTCHA</PackageId>
77
<Authors>maliming</Authors>
88
<Description>reCAPTCHA for ASP NET Core</Description>
99
<PackageProjectUrl>https://github.com/maliming/reCAPTCHA</PackageProjectUrl>
1010
<RepositoryUrl>https://github.com/maliming/reCAPTCHA</RepositoryUrl>
1111
<RepositoryType>git</RepositoryType>
12-
<Version>8.0.0</Version>
12+
<Version>9.0.0</Version>
1313
<IsPackable>true</IsPackable>
1414
<OutputType>Library</OutputType>
1515
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
17-
<PackageVersion>8.0.0</PackageVersion>
17+
<PackageVersion>9.0.0</PackageVersion>
1818
</PropertyGroup>
1919

2020
<ItemGroup>

0 commit comments

Comments
 (0)