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
This commit is contained in:
Vasilis 2024-05-05 23:18:26 +03:00 committed by null
parent fbfd2c2b7d
commit 047b142744
No known key found for this signature in database
GPG Key ID: 212F05528FD678BE
2 changed files with 2 additions and 9 deletions

View 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=

View 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