Add bash equivalents run*.bat scripts for linux devs (#31195)
* Add bash equivalents run*.bat scripts for linux devs * Apply suggestions from code review Add shebangs Co-authored-by: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> --------- Co-authored-by: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com>
This commit is contained in:
parent
543e17836a
commit
400f5898ec
4 changed files with 12 additions and 0 deletions
3
runclient-Tools.sh
Executable file
3
runclient-Tools.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
dotnet run --project Content.Client --configuration Tools
|
||||
read -p "Press enter to continue"
|
||||
3
runclient.sh
Executable file
3
runclient.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
dotnet run --project Content.Client
|
||||
read -p "Press enter to continue"
|
||||
3
runserver-Tools.sh
Executable file
3
runserver-Tools.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
dotnet run --project Content.Server --configuration Tools
|
||||
read -p "Press enter to continue"
|
||||
3
runserver.sh
Executable file
3
runserver.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
dotnet run --project Content.Server
|
||||
read -p "Press enter to continue"
|
||||
Loading…
Add table
Reference in a new issue