Skip to content

feat: add .slnx solution format support #812

feat: add .slnx solution format support

feat: add .slnx solution format support #812

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.x
9.x
10.x
- run: dotnet format --verify-no-changes
- run: dotnet format --verify-no-changes
working-directory: snapshots/input/syntax
- run: dotnet format --verify-no-changes
working-directory: snapshots/input/syntax-slnx
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.x
9.x
10.x
- run: dotnet test -p:TargetFrameworks=net10.0
- run: dotnet test -p:TargetFrameworks=net9.0
- run: dotnet test -p:TargetFrameworks=net8.0