Skip to content

Commit

Permalink
Merge pull request #15 from maliming/net9
Browse files Browse the repository at this point in the history
Update to NET 9.0.
  • Loading branch information
maliming authored Dec 10, 2024
2 parents c4ddff2 + d8fdb22 commit 43a51e0
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Build with dotnet
run: dotnet build -c Release
- name: Test with dotnet
Expand Down
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
# Owl.reCAPTCHA
Google reCAPTCHA for ASP NET Core (v3 and v2)

# Demo

V3:

![V3](gif/V3_Demo.gif)

V3 Programmatically:

![V3 Programmatically](gif/V3_Programmatically_Demo.gif)

V2 Invisible:

![V2_Invisible](gif/V2_Invisible.gif)

V2 Checkbox:

![V2_Checkbox](gif/V2_Checkbox.gif)


# Install-Package

```
Expand Down
2 changes: 1 addition & 1 deletion demo/reCAPTCHA.Demo/reCAPTCHA.Demo.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file added gif/V2_Checkbox.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added gif/V2_Invisible.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added gif/V3_Demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added gif/V3_Programmatically_Demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/Owl.reCAPTCHA/Owl.reCAPTCHA.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<RootNamespace>Owl.reCAPTCHA</RootNamespace>
<PackageId>Owl.reCAPTCHA</PackageId>
<Authors>maliming</Authors>
<Description>reCAPTCHA for ASP NET Core</Description>
<PackageProjectUrl>https://github.com/maliming/reCAPTCHA</PackageProjectUrl>
<RepositoryUrl>https://github.com/maliming/reCAPTCHA</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>8.0.0</Version>
<Version>9.0.0</Version>
<IsPackable>true</IsPackable>
<OutputType>Library</OutputType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>8.0.0</PackageVersion>
<PackageVersion>9.0.0</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 43a51e0

Please sign in to comment.