Skip to content

Build Windows

Build Windows #9

Workflow file for this run

name: Build Windows
on:
workflow_dispatch:
jobs:
Build_Windows:
runs-on: windows-2025
steps:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Checkout repo
uses: actions/checkout@v6
- name: Compile release
run: |
cd BLEServer
msbuild BLEServer.sln /p:Configuration=Release /p:Platform=ARM64
msbuild BLEServer.sln /p:Configuration=Release /p:Platform=x64
msbuild BLEServer.sln /p:Configuration=Release /p:Platform=x86