update #81
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
# This workflow now builds T3000Controls and BACnetStackLibrary components | |
name: Testing the MSBuild | |
# On master make sure both push and a pull request builds this action | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- '.github/**' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- '.github/**' | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build Solution | |
run: | | |
msbuild "T3000 - VS2019.sln" /p:Platform=x86 /p:Configuration=Release /p:ProjectVersion=20230804 |