Skip to content

Migrates solution to .NET 9.0 #20

Migrates solution to .NET 9.0

Migrates solution to .NET 9.0 #20

Workflow file for this run

name: .NET Core Desktop
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install .NET 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
# cache: true
- name: Execute unit tests
run: |
cd sourcecodes
dotnet build --configuration Release
dotnet test ./FolderSecurityViewer.sln --framework net9.0-windows --configuration Release