-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.bat
More file actions
28 lines (23 loc) · 686 Bytes
/
Copy pathdev.bat
File metadata and controls
28 lines (23 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@echo off
title Vixz YouTube Desktop [DEV MODE]
color 0A
echo ========================================================
echo Vixz - Native YouTube Desktop [DEV MODE]
echo ========================================================
echo.
cd /d "%~dp0\windows\VixzDesktop"
echo [*] Restoring and Building Vixz Desktop...
dotnet build -c Debug
if %ERRORLEVEL% NEQ 0 (
color 0C
echo.
echo [!] Build Failed! Please check the compiler errors above.
pause
exit /b %ERRORLEVEL%
)
echo.
echo [*] Launching Vixz YouTube Desktop...
start "" "%~dp0\windows\VixzDesktop\bin\Debug\net9.0-windows\VixzDesktop.exe"
echo [*] App launched successfully.
timeout /t 3 >nul
exit