diff --git a/runclient-Tools.sh b/runclient-Tools.sh new file mode 100755 index 0000000000..cc0c958b86 --- /dev/null +++ b/runclient-Tools.sh @@ -0,0 +1,3 @@ +#!/bin/sh +dotnet run --project Content.Client --configuration Tools +read -p "Press enter to continue" diff --git a/runclient.sh b/runclient.sh new file mode 100755 index 0000000000..9417cc9218 --- /dev/null +++ b/runclient.sh @@ -0,0 +1,3 @@ +#!/bin/sh +dotnet run --project Content.Client +read -p "Press enter to continue" diff --git a/runserver-Tools.sh b/runserver-Tools.sh new file mode 100755 index 0000000000..6280dc4279 --- /dev/null +++ b/runserver-Tools.sh @@ -0,0 +1,3 @@ +#!/bin/sh +dotnet run --project Content.Server --configuration Tools +read -p "Press enter to continue" diff --git a/runserver.sh b/runserver.sh new file mode 100755 index 0000000000..33258e3190 --- /dev/null +++ b/runserver.sh @@ -0,0 +1,3 @@ +#!/bin/sh +dotnet run --project Content.Server +read -p "Press enter to continue"