mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
48 lines
1.7 KiB
Bash
Executable File
48 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Format C# files with dotnet-format
|
|
echo "Formatting C# files..."
|
|
|
|
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
|
|
|
if command -v dotnet &> /dev/null; then
|
|
# Store original directory
|
|
pushd "$dir" > /dev/null
|
|
|
|
# Copy .editorconfig to C# directories
|
|
cp .editorconfig ../spine-csharp/ 2>/dev/null || true
|
|
cp .editorconfig ../spine-monogame/ 2>/dev/null || true
|
|
cp .editorconfig ../spine-unity/ 2>/dev/null || true
|
|
|
|
# Format spine-csharp
|
|
pushd ../spine-csharp > /dev/null
|
|
dotnet format spine-csharp.csproj --no-restore --verbosity quiet 2>/dev/null || echo "Warning: Some issues with spine-csharp formatting"
|
|
popd > /dev/null
|
|
|
|
# Format spine-monogame
|
|
pushd ../spine-monogame > /dev/null
|
|
dotnet format --no-restore --verbosity quiet 2>/dev/null || echo "Warning: Some issues with spine-monogame formatting"
|
|
popd > /dev/null
|
|
|
|
# Format spine-unity - look for .cs files directly
|
|
if [ -d ../spine-unity ]; then
|
|
echo "Formatting spine-unity C# files directly..."
|
|
pushd ../spine-unity > /dev/null
|
|
# Find all .cs files and format them using dotnet format whitespace
|
|
find . -name "*.cs" -type f -not -path "./Library/*" -not -path "./Temp/*" -not -path "./obj/*" -not -path "./bin/*" | while read -r file; do
|
|
dotnet format whitespace --include "$file" --no-restore 2>/dev/null || true
|
|
done
|
|
popd > /dev/null
|
|
fi
|
|
|
|
# Clean up .editorconfig files
|
|
rm -f ../spine-csharp/.editorconfig
|
|
rm -f ../spine-monogame/.editorconfig
|
|
rm -f ../spine-unity/.editorconfig
|
|
|
|
# Return to original directory
|
|
popd > /dev/null
|
|
else
|
|
echo "Warning: dotnet not found. Skipping C# formatting."
|
|
fi |