Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 37 additions & 13 deletions run.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:: Last updated: Saturday 16th August, 2025 @ 19:00
:: Last updated: Monday 22nd June, 2026 @ 12:00

@echo off

Expand All @@ -16,7 +16,7 @@ goto selectvsversion
:selectvsversion
cls

@echo Welcome to the Krypton Toolkit Build system, version: 3.0.
@echo Welcome to the Krypton Toolkit Build system, version: 3.1.
@echo Please select the Visual Studio toolset to target.
echo:
@echo ==============================================================================================
Expand Down Expand Up @@ -265,10 +265,9 @@ echo Deleted the 'Krypton.Workspace\obj' folder
echo Deleting the 'Logs' folder
del /f "Logs"

:: ===================================================================================================
exit /b 0

:cleanproject
goto cleanproject
:: ===================================================================================================

:buildproject
goto buildmenu
Expand All @@ -280,7 +279,7 @@ goto packmenu
goto debugmenu

:nugettools
goto createarchives
goto nugettoolsmenu

:createarchives
cls
Expand Down Expand Up @@ -533,6 +532,9 @@ pause

goto packstable

:packlts
goto packltsmenu

:packltsmenu

cls
Expand Down Expand Up @@ -629,9 +631,11 @@ cls

call "%VS_SCRIPTS_DIR%\build-nightly.cmd"

goto debugmenu

:: ===================================================================================================

:nugettools
:nugettoolsmenu
cls


Expand Down Expand Up @@ -660,6 +664,8 @@ if %answer%==6 (goto mainmenu)

pause

goto buildandcreatenugetpackages

:: ===================================================================================================

:buildnightlypackages
Expand Down Expand Up @@ -706,6 +712,8 @@ call "%VS_SCRIPTS_DIR%\build-nightly-custom.cmd" Pack

pause

goto mainmenu

:: ===================================================================================================

:rebuildproject
Expand All @@ -714,30 +722,46 @@ cls

call "%VS_SCRIPTS_DIR%\rebuild-build-nightly.cmd"

goto buildmenu

:: ===================================================================================================

:buildandpacknightly
cls

:: goto clearproject

call "%VS_SCRIPTS_DIR%\build-nightly.cmd" Pack

:: build-nightly.cmd
pause

call "%VS_SCRIPTS_DIR%\build-nightly.cmd" Pack
goto buildandpacktoolkitmenu

:buildandpackcanary
cls


call "%VS_SCRIPTS_DIR%\build-canary.cmd" Pack

pause

goto buildandpacktoolkitmenu

:buildandpackstable
cls


call "%VS_SCRIPTS_DIR%\build-stable.cmd" Pack

pause

goto buildandpacktoolkitmenu

:buildandpacklts
cls

call "%VS_SCRIPTS_DIR%\build-lts.cmd" Pack

pause

goto buildandpacktoolkitmenu

:: ===================================================================================================

:clearlogfiles
Expand Down
Loading