Files
UVtools/CompileWindows.bat
T
Tiago Conceição 6a2939b44a v0.4.2
* (Add) Zoom times information
* (Add) Island checker, navigation and removal
* (Add) Layer repair with island repair
* (Add) Show mouse coordinates over layer image
* (Fix) Pixel edit cant remove faded AA pixels
* (Fix) Pixel edit cant add white pixels over faded AA pixels
* (Change) Nova3D Elfin printer build volume from 130x70 to 132x74
2020-06-03 22:51:52 +01:00

20 lines
616 B
Batchfile

@echo off
SET DIR=%~dp0
REM if exist "%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" SET MSBUILD_PATH="%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe"
if exist "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" SET MSBUILD_PATH="%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe"
IF [%MSBUILD_PATH%] == [] GOTO noMSBuild
echo PrusaSL1Viewer.sln Compile
echo %MSBUILD_PATH%
%MSBUILD_PATH% -p:Configuration=Release PrusaSL1Viewer.sln
GOTO end
:noMSBuild
echo MSBuild.exe path not found!
:end
pause