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:
parent
6c570be4c3
commit
bc82caf38e
|
|
@ -0,0 +1,3 @@
|
||||||
|
@echo off
|
||||||
|
start "DeltaVServer-Debug" cmd /k "runserver-Debug.bat"
|
||||||
|
start "DeltaVClient-Debug" cmd /k "runclient-Debug.bat"
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
@echo off
|
||||||
|
start "DeltaVServer-Tools" cmd /k "runserver-Tools.bat"
|
||||||
|
start "DeltaVClient-Tools" cmd /k "runclient-Tools.bat"
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
@echo off
|
||||||
|
start "DeltaVServer" cmd /k "runserver.bat"
|
||||||
|
start "DeltaVClient" cmd /k "runclient.bat"
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
@echo off
|
||||||
|
dotnet run --project Content.Client --configuration Debug
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
@echo off
|
||||||
|
dotnet run --project Content.Server --configuration Debug
|
||||||
|
pause
|
||||||
Loading…
Reference in New Issue