switch the pdf bakend to QuestPDF #26
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: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
windows-build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: Restore dependencies | |
run: dotnet restore TownSuite.TwainScanner.sln | |
- name: Build | |
run: msbuild TownSuite.TwainScanner.sln -property:Configuration=Release | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: win-x64 | |
path: | | |
TownSuite.TwainScanner/bin/Release | |
retention-days: 1 |