Skip to content

Add support for .NET 8 #11

Add support for .NET 8

Add support for .NET 8 #11

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Restore Lib
run: dotnet restore ./Src
- name: Build Lib
run: dotnet build ./Src/CaptchaN.sln --no-restore
- name: Restore CaptchaN.WebApi
run: dotnet restore ./Samples/CaptchaN.WebApi
- name: Build CaptchaN.WebApi
run: dotnet build ./Samples/CaptchaN.WebApi/CaptchaN.WebApi.csproj --no-restore
#- name: Test
# run: dotnet test --no-build --verbosity normal