mirror of
https://github.com/FroggMaster/CreamInstaller.git
synced 2026-06-12 19:11:25 -07:00
Create msbuild.yml
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user