-
Notifications
You must be signed in to change notification settings - Fork 10
38 lines (30 loc) · 737 Bytes
/
build.yml
File metadata and controls
38 lines (30 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Build
on:
# push:
# branches:
# - main
# - dev
# pull_request:
# branches:
# - main
# - dev
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Restore
run: msbuild "Simple QR Code Maker.sln" /t:Restore /p:Configuration=Release /p:Platform=x64
- name: Build
run: msbuild "Simple QR Code Maker.sln" /p:Configuration=Release /p:Platform=x64