Update USMT.cs #145
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/[email protected] | |
- name: Build 32 | |
run: MSBuild SuperGrate.sln -t:Restore -t:Rebuild -p:Configuration=Release | |
- name: Upload | |
uses: actions/[email protected] | |
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/[email protected] | |
with: | |
name: SuperGrate-x64 | |
path: | | |
.\SuperGrate\bin\Release_64\SuperGrate.exe |