fix winsecruntime crc mask + use sdk nigelcrypt headers #7
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: ci | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: setup msvc | |
| uses: ilammy/msvc-dev-cmd@v1 | |
| - name: build x64 release | |
| shell: powershell | |
| run: | | |
| if (Test-Path "x64/example.sln") { | |
| msbuild "x64/example.sln" /m /p:Configuration=Release /p:Platform=x64 | |
| } else { | |
| Write-Error "x64/example.sln not found" | |
| } |