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 .
This commit is contained in:
Venn 2024-09-20 09:32:25 -04:00 committed by GitHub
parent 6c570be4c3
commit bc82caf38e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 14 additions and 0 deletions

3
RunBoth-Debug.bat Normal file
View File

@ -0,0 +1,3 @@
@echo off
start "DeltaVServer-Debug" cmd /k "runserver-Debug.bat"
start "DeltaVClient-Debug" cmd /k "runclient-Debug.bat"

3
RunBoth-Tools.bat Normal file
View File

@ -0,0 +1,3 @@
@echo off
start "DeltaVServer-Tools" cmd /k "runserver-Tools.bat"
start "DeltaVClient-Tools" cmd /k "runclient-Tools.bat"

3
RunBoth.bat Normal file
View File

@ -0,0 +1,3 @@
@echo off
start "DeltaVServer" cmd /k "runserver.bat"
start "DeltaVClient" cmd /k "runclient.bat"

2
runclient-Debug.bat Normal file
View File

@ -0,0 +1,2 @@
@echo off
dotnet run --project Content.Client --configuration Debug

3
runserver-Debug.bat Normal file
View File

@ -0,0 +1,3 @@
@echo off
dotnet run --project Content.Server --configuration Debug
pause