Build Windows #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |