2021-08-09 17:14:29 +05:00
|
|
|
name: MSBuild
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
2021-08-09 17:21:32 +05:00
|
|
|
restore:
|
|
|
|
name: Restore
|
2021-08-09 17:14:29 +05:00
|
|
|
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
|