Skip to content

Add .NET 10.0 target framework support #391

Add .NET 10.0 target framework support

Add .NET 10.0 target framework support #391

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: [ main ]
paths-ignore:
- 'doc/**'
- 'readme.md'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- uses: actions/checkout@v5
- uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
10.0.x
global-json-file: global.json
- name: Version
run: dotnet --version
- name: Test
run: dotnet test -c Release --logger GitHubActions
- name: Test - Compiled
run: dotnet test --configuration Release --logger GitHubActions /p:Compiled=true