Skip to content

Support net9.0

Support net9.0 #79

Workflow file for this run

name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Tests
run: dotnet test
- name: Pack
run: dotnet pack GenerateAspNetCoreClient -c Release
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
path: ./**/*.nupkg