Create msbuild.yml

This commit is contained in:
pointfeev 2021-08-09 07:14:29 -05:00 committed by GitHub
parent edcddb3c5e
commit a1e4ce0fb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

27
.github/workflows/msbuild.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: MSBuild
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.0.2
- name: Restore Solution
run: msbuild CreamInstaller.sln /t:Restore /p:Configuration=Release
- name: Build Solution
run: msbuild CreamInstaller.sln /t:Build /p:Configuration=Release