-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (49 loc) · 2.13 KB
/
windowsForm_build_check.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: .NET Framework for WindowsForm`s Build Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-windowsFormApp1:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Build solution
run: msbuild app_WindowsForm\WindowsFormsAppFieldIntersectionPoint\WindowsFormsApp1.sln /p:Configuration=Release
- name: Build app for release
run: msbuild app_WindowsForm\WindowsFormsAppFieldIntersectionPoint\WindowsFormsApp1.sln -t:rebuild -verbosity:diag -property:Configuration=Release
build-windowsFormApp2:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Build solution
run: msbuild app_WindowsForm\WindowsFormsAppLab7_2\WindowsFormsAppLab7_2.sln /p:Configuration=Release
- name: Build app for release
run: msbuild app_WindowsForm\WindowsFormsAppLab7_2\WindowsFormsAppLab7_2.sln -t:rebuild -verbosity:diag -property:Configuration=Release
build-windowsFormApp3:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Build solution
run: msbuild app_WindowsForm\WindowsFormsAppCalculateLab7\WindowsFormsAppCalculateLab7.sln /p:Configuration=Release
- name: Build app for release
run: msbuild app_WindowsForm\WindowsFormsAppCalculateLab7\WindowsFormsAppCalculateLab7.sln -t:rebuild -verbosity:diag -property:Configuration=Release
build-windowsFormAppGameLife4:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Build solution
run: msbuild app_WindowsForm\WindowsFormsGame_Life\WindowsFormsGame_Life.sln /p:Configuration=Release
- name: Build app for release
run: msbuild app_WindowsForm\WindowsFormsGame_Life\WindowsFormsGame_Life.sln -t:rebuild -verbosity:diag -property:Configuration=Release