Fixed scaling issue with hotkey input form #251
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies for DAIRemote | |
run: dotnet restore /p:EnableWindowsTargeting=true | |
working-directory: DAIRemote | |
- name: Build DAIRemote project | |
run: dotnet build --no-restore /p:EnableWindowsTargeting=true | |
working-directory: DAIRemote | |
- name: Restore dependencies for DAIRemote.tests | |
run: dotnet restore /p:EnableWindowsTargeting=true | |
working-directory: DAIRemote.tests | |
- name: Build DAIRemote.tests project | |
run: dotnet build --no-restore /p:EnableWindowsTargeting=true | |
working-directory: DAIRemote.tests | |
- name: Test | |
run: | | |
dotnet test --no-build --verbosity normal /p:EnableWindowsTargeting=true | |
working-directory: DAIRemote.tests | |