mirror of
https://github.com/emtee40/NanaZip
synced 2026-04-25 16:24:56 +02:00
16 lines
355 B
Batchfile
16 lines
355 B
Batchfile
@setlocal
|
|
@echo off
|
|
|
|
rem Change to the current folder.
|
|
cd "%~dp0"
|
|
|
|
rem Remove the output folder for a fresh compile.
|
|
rd /s /q Output
|
|
|
|
rem Initialize Visual Studio environment
|
|
call "%~dp0Mile.Project.Windows\InitializeVisualStudioEnvironment.cmd"
|
|
|
|
rem Build all targets
|
|
MSBuild -binaryLogger:Output\BuildAllTargets.binlog -m BuildAllTargets.proj
|
|
|
|
@endlocal |