From bc82caf38eabb457d433a7788311051782793112 Mon Sep 17 00:00:00 2001 From: Venn Date: Fri, 20 Sep 2024 09:32:25 -0400 Subject: [PATCH] Dual Boot Batches (#1633) * Dual Boot Batches Adds two batch files to automatically run runserver.bat and runclient.bat . Also includes tool versions. * Delete RunBoth-Tools.bat Removes Tools batch at Danger's advice . * Revert Tools Batch Removal Re-adds Tools batch after discussion in Contribution-Help on the discord. * Debug Dual boot Adds launch batchs for Debug , as well as a dual boot batch for it . --- RunBoth-Debug.bat | 3 +++ RunBoth-Tools.bat | 3 +++ RunBoth.bat | 3 +++ runclient-Debug.bat | 2 ++ runserver-Debug.bat | 3 +++ 5 files changed, 14 insertions(+) create mode 100644 RunBoth-Debug.bat create mode 100644 RunBoth-Tools.bat create mode 100644 RunBoth.bat create mode 100644 runclient-Debug.bat create mode 100644 runserver-Debug.bat diff --git a/RunBoth-Debug.bat b/RunBoth-Debug.bat new file mode 100644 index 0000000000..a63a8861ac --- /dev/null +++ b/RunBoth-Debug.bat @@ -0,0 +1,3 @@ +@echo off +start "DeltaVServer-Debug" cmd /k "runserver-Debug.bat" +start "DeltaVClient-Debug" cmd /k "runclient-Debug.bat" diff --git a/RunBoth-Tools.bat b/RunBoth-Tools.bat new file mode 100644 index 0000000000..8c78835a76 --- /dev/null +++ b/RunBoth-Tools.bat @@ -0,0 +1,3 @@ +@echo off +start "DeltaVServer-Tools" cmd /k "runserver-Tools.bat" +start "DeltaVClient-Tools" cmd /k "runclient-Tools.bat" diff --git a/RunBoth.bat b/RunBoth.bat new file mode 100644 index 0000000000..b7fc354797 --- /dev/null +++ b/RunBoth.bat @@ -0,0 +1,3 @@ +@echo off +start "DeltaVServer" cmd /k "runserver.bat" +start "DeltaVClient" cmd /k "runclient.bat" diff --git a/runclient-Debug.bat b/runclient-Debug.bat new file mode 100644 index 0000000000..7c7e30a3f6 --- /dev/null +++ b/runclient-Debug.bat @@ -0,0 +1,2 @@ +@echo off +dotnet run --project Content.Client --configuration Debug diff --git a/runserver-Debug.bat b/runserver-Debug.bat new file mode 100644 index 0000000000..af6ab2ebd8 --- /dev/null +++ b/runserver-Debug.bat @@ -0,0 +1,3 @@ +@echo off +dotnet run --project Content.Server --configuration Debug +pause