Skip to content
This repository was archived by the owner on Feb 12, 2023. It is now read-only.

Commit 32efb2b

Browse files
committed
Brought back the build scripts at GitLink owners' request
I've modified from their original to be more reliable to paths with spaces, require at least MSBuild 14 (because that's the only thing tested), and clean build outputs from the new location
1 parent 39b9baf commit 32efb2b

4 files changed

+21
-0
lines changed

scripts - Build - Debug.bat

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@echo off
2+
@setlocal
3+
4+
IF NOT "%VS140COMNTOOLS%" == "" (call "%VS140COMNTOOLS%vsvars32.bat")
5+
6+
for /F %%A in ('dir /b src\*.sln') do call devenv "src\%%A" /build "Debug"
7+
pause

scripts - Build - Release.bat

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@echo off
2+
@setlocal
3+
4+
IF NOT "%VS140COMNTOOLS%" == "" (call "%VS140COMNTOOLS%vsvars32.bat")
5+
6+
for /F %%A in ('dir /b src\*.sln') do call devenv "src\%%A" /build "Release"
7+
pause

scripts - Clean all.bat

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
REM Deleting output
2+
FOR %%A in (bin obj\debug obj\release) do IF EXIST "%~dp0%%A" rd /s /q "%~dp0%%A"
3+
4+
@pause

scripts - Restore packages.bat

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
call "%~dp0init.cmd"
2+
3+
@pause

0 commit comments

Comments
 (0)