From: Vasilis Date: Sun, 5 May 2024 20:18:26 +0000 (+0300) Subject: Use dotnet run for the run batch files instead of directly calling the exe (#27698) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=eb2fac40db1dfaf789511eef0cb7e394100fef50;p=space-station-14.git Use dotnet run for the run batch files instead of directly calling the exe (#27698) * Use dotnet run for the run batch files instead of directly calling the exe * FUCK --- diff --git a/runclient.bat b/runclient.bat index f580d41e9d..f867d00c0b 100644 --- a/runclient.bat +++ b/runclient.bat @@ -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= diff --git a/runserver.bat b/runserver.bat index 573de0a15d..5c3f8acecd 100644 --- a/runserver.bat +++ b/runserver.bat @@ -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