Skip to content

1.0.2

1.0.2 #46

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-2019]
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
- uses: microsoft/[email protected]
- name: Windows 8.1 SDK
shell: powershell
run: |
Invoke-WebRequest -Method Get -Uri https://go.microsoft.com/fwlink/p/?LinkId=323507 -OutFile sdksetup.exe -UseBasicParsing
Start-Process -Wait sdksetup.exe -ArgumentList "/q", "/norestart", "/features", "OptionId.WindowsDesktopSoftwareDevelopmentKit", "OptionId.NetFxSoftwareDevelopmentKit"
- name: Compiling
shell: cmd
run: |
msbuild AutoUpdater.vs160.sln /property:Configuration=Release
msbuild AutoUpdater.vs160.sln /property:Configuration=Debug
msbuild AutoUpdater.vs160.sln /property:Configuration=Release /p:Platform=x64
msbuild AutoUpdater.vs160.sln /property:Configuration=Debug /p:Platform=x64