mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-09 01:52:32 +02:00
6a2939b44a
* (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
20 lines
616 B
Batchfile
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
|