From a1e4ce0fb741fa6dfca15367d9a42a18b94dd495 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Mon, 9 Aug 2021 07:14:29 -0500 Subject: [PATCH] Create msbuild.yml --- .github/workflows/msbuild.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/msbuild.yml diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml new file mode 100644 index 0000000..ec314a4 --- /dev/null +++ b/.github/workflows/msbuild.yml @@ -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