Skip to content

add autoupdating

add autoupdating #13

Workflow file for this run

name: build-on-push
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup Nuget
uses: Nuget/setup-nuget@v1.0.5
- name: Restore Nuget packages
run: nuget restore .\BlueWP.sln
- name: Build Debug
run: msbuild .\BlueWP.sln /t:build /p:Configuration=Debug
- name: Build Release
run: msbuild .\BlueWP.sln /t:build /p:Configuration=Release