Files
MonoGame.Extended/.gitattributes
T
Christopher Whitley d008b1bd41 Replace Newtonsoft.Json with System.Text.Json (#869)
* Converted to use `System.Text.Json`

* Remove Newtonsoft.Json Dependency
Newtonsoft.Json dependency has been removed in favor of System.Text.Json

* Treat MGFXO file as binary
2024-05-22 23:23:36 -04:00

49 lines
2.0 KiB
Plaintext

################################################################################
### Default behavior
### - Treat as text
### - Normalize to Unix-style line endings
################################################################################
* text eol=lf
################################################################################
### C# source file behavior
### - Treat as text
### - Normalize to Unix-style line endings
### - Diff as csharp
################################################################################
*.cs text eol=lf diff=csharp
################################################################################
### csproj file behavior
### - Treat as text
### - Normalize to Unix-style line endings
### - Use a union merge when resolving conflicts
################################################################################
.csproj text eol=lf merge=union
################################################################################
### sln file behavior
### - Treat as text
### - Normalize to Windows-style line endings
### - Use a union merge when resolving conflicts
################################################################################
*.sln text eol=crlf merge=union
################################################################################
### image file behavior
### - Treat as binary
################################################################################
*.bmp binary
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
*.webp binary
################################################################################
### MGFXO file behavior
### - Treat as binary
################################################################################
*.mgfxo binary