This commit is contained in:
2026-01-02 14:07:44 +01:00
commit b06704bcd7
4 changed files with 336 additions and 0 deletions

26
build.bat Normal file
View File

@@ -0,0 +1,26 @@
@echo off
echo ======================================
echo Building VS Code Copilot Setup
echo ======================================
echo.
REM Check if PyInstaller is installed
pip show pyinstaller >nul 2>&1
if %errorlevel% neq 0 (
echo [*] Installing PyInstaller...
pip install pyinstaller
echo.
)
REM Build the executable
echo [*] Building executable...
pyinstaller --onefile --icon=logo.ico --name="VSCode-Copilot-Setup" --uac-admin installer.py
echo.
echo ======================================
echo Build completed!
echo ======================================
echo.
echo Output location: dist\VSCode-Copilot-Setup.exe
echo.
pause