Skip to content

Update to NET 9.0. #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading