]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Use dotnet run for the run batch files instead of directly calling the exe (#27698)
authorVasilis <vasilis@pikachu.systems>
Sun, 5 May 2024 20:18:26 +0000 (23:18 +0300)
committerGitHub <noreply@github.com>
Sun, 5 May 2024 20:18:26 +0000 (22:18 +0200)
* Use dotnet run for the run batch files instead of directly calling the exe

* FUCK

runclient.bat
runserver.bat

index f580d41e9d678f11675d101552e41332280ce4e5..f867d00c0ba5373ca4c5cf5755cefac8bd7007ea 100644 (file)
@@ -1,6 +1,3 @@
 @echo off
-set PDIR=%~dp0
-cd %PDIR%Bin\Content.Client
-start Content.Client.exe %*
-cd %PDIR%
+dotnet run --project Content.Client
 set PDIR=
index 573de0a15d8631cf4463e4fc9ab5e2ab3ef0b8e1..5c3f8acecdf5924388e1d185acbefc7907744353 100644 (file)
@@ -1,7 +1,3 @@
 @echo off
-set PDIR=%~dp0
-cd %PDIR%Bin\Content.Server
-call Content.Server.exe %*
-cd %PDIR%
-set PDIR=
+dotnet run --project Content.Server
 pause