Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Use dotnet run for the run batch files instead of directly calling th…
Browse files Browse the repository at this point in the history
…e exe (#27698)

* Use dotnet run for the run batch files instead of directly calling the exe

* FUCK
  • Loading branch information
VasilisThePikachu authored May 5, 2024
1 parent 92c2ff0 commit eb2fac4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
5 changes: 1 addition & 4 deletions runclient.bat
Original file line number Diff line number Diff line change
@@ -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=
6 changes: 1 addition & 5 deletions runserver.bat
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit eb2fac4

Please sign in to comment.