Skip to content

Bump Microsoft.Win32.SystemEvents from 7.0.0 to 9.0.1 #32

Bump Microsoft.Win32.SystemEvents from 7.0.0 to 9.0.1

Bump Microsoft.Win32.SystemEvents from 7.0.0 to 9.0.1 #32

Workflow file for this run

name: Testing
on: push
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Cache NuGet
uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget
- name: Dependencies
run: dotnet restore
- name: Build
run: dotnet build -c debug --no-restore
- name: Test
run: dotnet test --no-build -v q