Skip to content

fix: DPI recognition after screen change/DPI change #2428

fix: DPI recognition after screen change/DPI change

fix: DPI recognition after screen change/DPI change #2428

Workflow file for this run

name: .NET
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
name: "Build"
steps:
- uses: actions/checkout@master
with:
submodules: true
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x' # SDK Version to use;
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Publish
run: dotnet publish '${{ runner.workspace }}/DSMapStudio/src/Studio.App/DSMapStudio/DSMapStudio.csproj' --configuration Release -o deploy
- name: PublishLowRequirements
run: dotnet publish '${{ runner.workspace }}/DSMapStudio/src/Studio.App/DSMapStudio_LowRequirements/DSMapStudio_LowRequirements.csproj' --configuration Release -o deploy
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: 'DSMapStudio-SHA${{ github.sha }}'
path: '${{ runner.workspace }}/DSMapStudio/deploy'