blob: e9afe0a8729abfc9c1e34227b0ad353f40fb8f9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
################################################################################
### 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
|