Skip to content

Commit c5589ea

Browse files
committed
Added gitattributes
1 parent 673f8fe commit c5589ea

File tree

4 files changed

+338
-316
lines changed

4 files changed

+338
-316
lines changed

.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

Mvc.JQuery.Datatables.Example/Controllers/HomeController.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.ComponentModel;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
44
using System.Globalization;
55
using System.Linq;
66
using System.Web;
@@ -90,19 +90,19 @@ public class User
9090

9191
public DateTimeOffset Hired { get; set; }
9292

93-
public Numbers Number { get; set; }
94-
95-
public bool IsAdmin { get; set; }
93+
public Numbers Number { get; set; }
94+
95+
public bool IsAdmin { get; set; }
9696
}
9797

9898
public class UserView
9999
{
100-
public int Id { get; set; }
101-
100+
public int Id { get; set; }
101+
102102
[DisplayName("Full Name")]
103103
public MvcHtmlString Name { get; set; }
104104

105-
public string Email { get; set; }
105+
public string Email { get; set; }
106106
public bool IsAdmin { get; set; }
107107
public string Position { get; set; }
108108
public DateTimeOffset Hired { get; set; }

0 commit comments

Comments
 (0)