forked from fishstrap/wpfui
-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (29 loc) · 786 Bytes
/
Copy pathDV.yml
File metadata and controls
35 lines (29 loc) · 786 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
name: DotNet Development
on:
pull_request:
branches: [development]
push:
branches: [development]
workflow_dispatch:
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- uses: microsoft/setup-msbuild@v1.1
with:
msbuild-architecture: x64
- uses: nuget/setup-nuget@v1.0.7
with:
nuget-version: "latest"
- name: NuGet restore
run: nuget restore src/Wpf.Ui.Demo.sln
- name: Build
run: msbuild src/Wpf.Ui.sln -p:Configuration=Release -m
- name: Publish net60
uses: actions/upload-artifact@v3
id: publish_net6
with:
name: WPFUI_DEMO-NET6
path: |
src/Wpf.Ui.Demo/bin/Release/net6.0-windows10.0.22000.0