Update tutorial.md #58
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 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 |