rimworld-mod-template/.vscode/fmt.sh

13 lines
184 B
Bash
Raw Normal View History

2024-02-11 17:28:50 +01:00
set -e
2024-10-16 14:11:05 +02:00
set -x
2024-02-11 17:28:50 +01:00
script_dir=$(dirname $(readlink -f $0))
mod_dir=$(dirname $script_dir)
pushd $mod_dir
2024-10-16 14:11:05 +02:00
treefmt
dotnet tool restore
dotnet roslynator format $script_dir/mod.csproj
2024-02-11 17:28:50 +01:00
2024-10-16 14:11:05 +02:00
popd