Skip to content

add github actions workflow for build #1

add github actions workflow for build

add github actions workflow for build #1

Workflow file for this run

name: build
on:
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Restore NuGet packages
run: nuget restore
- name: Build solution
run: msbuild /p:Configuration=Debug /p:Platform="Any CPU" IviVisaNetSample.sln