rimworld-mod-template/.vscode/fmt.sh
2024-10-16 14:11:05 +02:00

12 lines
184 B
Bash
Executable file

set -e
set -x
script_dir=$(dirname $(readlink -f $0))
mod_dir=$(dirname $script_dir)
pushd $mod_dir
treefmt
dotnet tool restore
dotnet roslynator format $script_dir/mod.csproj
popd