Initial commit

This commit is contained in:
2026-06-02 02:40:03 +02:00
committed by Madcow
commit 2933a50916
26 changed files with 3527 additions and 0 deletions

15
tools/msbuild.bat Normal file
View File

@@ -0,0 +1,15 @@
@echo off
setlocal enabledelayedexpansion
rem locate msbuild installation path
for /f "usebackq tokens=*" %%i in (`%~dp0\vswhere.exe -latest -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\MSBuild.exe`) do (
set "msbuild=%%i"
)
if not exist "%msbuild%" (
echo Error: Cannot locate MSBuild.exe
exit /b 1
)
rem run msbuild
"%msbuild%" %*