Skip to content

Updated setup-msbuild action #33

Updated setup-msbuild action

Updated setup-msbuild action #33

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup nuget
uses: nuget/setup-nuget@v1
- name: Restore packages
run: nuget restore wtrace.sln
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
- name: Build Release using MSBuild
run: msbuild wtrace.sln -m /p:Configuration=Release
- uses: actions/upload-artifact@v2
with:
name: wtrace
path: bin\wtrace\net472\wtrace.exe