Update USMT.cs #129
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 Desktop | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v1.3.1 | |
- name: Build 32 | |
run: MSBuild SuperGrate.sln -t:Restore -t:Rebuild -p:Configuration=Release | |
- name: Upload | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: SuperGrate-x86 | |
path: | | |
.\SuperGrate\bin\Release\SuperGrate.exe | |
- name: Build 64 | |
run: MSBuild SuperGrate.sln -t:Restore -t:Rebuild -p:Configuration=Release_64 | |
- name: Upload | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: SuperGrate-x64 | |
path: | | |
.\SuperGrate\bin\Release_64\SuperGrate.exe |