winfsp/tools/gensrc/remove-all-arm64.bat
Bill Zissimopoulos 6ab1ed3b7f
tools: remove-all-arm64
Add script to remove ARM64 project configurations for builds on VS2015
2021-12-16 11:30:09 +00:00

17 lines
372 B
Batchfile

@echo off
setlocal
setlocal EnableDelayedExpansion
cd %~dp0..\..
for /r %%f in (*.vcxproj) do (
echo %%f
powershell -NoProfile -ExecutionPolicy Bypass -Command "& '%~dp0remove-vcxproj-config.ps1' -Path '%%f' -ProjectConfiguration '|ARM64'
)
for /r %%f in (*.sln) do (
echo %%f
findstr /V /C:"|ARM64" "%%f" > "%%f.new"
move /Y "%%f.new" "%%f" >nul
)