mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-16 21:17:39 +03:00
# Description Adds several scripts to make building and running the projects easier outside of an IDE.
10 lines
176 B
Bash
Executable File
10 lines
176 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# make sure to start from script dir
|
|
if [ "$(dirname $0)" != "." ]; then
|
|
cd "$(dirname $0)"
|
|
fi
|
|
|
|
cd ../../
|
|
dotnet run --project Content.Server --no-build
|