Skip to content

Improve structure, fix timestamp bypass, fix parser, etc. #5

Improve structure, fix timestamp bypass, fix parser, etc.

Improve structure, fix timestamp bypass, fix parser, etc. #5

Workflow file for this run

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 "library.sln") {
msbuild "library.sln" /m /p:Configuration=Release /p:Platform=x64
} elseif (Test-Path "*.sln") {
$sln = Get-ChildItem -Filter *.sln | Select-Object -First 1
msbuild $sln.FullName /m /p:Configuration=Release /p:Platform=x64
} else {
Write-Error "no solution (.sln) found to build"
}