Update README.md #29
This file contains hidden or 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: Main workflow | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Build DataDisplay | |
| run: | | |
| cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\" | |
| .\MSBuild.exe $Env:GITHUB_WORKSPACE\Source\datadisplay.vcxproj /property:Configuration=Release | |
| - uses: actions/upload-artifact@v1 | |
| with: | |
| name: DataDisplay | |
| path: Result/DataDisplay.exe | |
| - name: Build DataGenerator | |
| run: | | |
| cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\" | |
| .\MSBuild.exe $Env:GITHUB_WORKSPACE\Source\datagenerator.vcxproj /property:Configuration=Release | |
| - uses: actions/upload-artifact@v1 | |
| with: | |
| name: DataGenerator | |
| path: Result/DataGenerator.exe |