Skip to content

Commit 02c1410

Browse files
committed
Changed a .gitattributes and .gitignore files
1 parent 9965b88 commit 02c1410

File tree

2 files changed

+82
-16
lines changed

2 files changed

+82
-16
lines changed

.gitattributes

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
9+
# Standard to msysgit
10+
*.doc diff=astextplain
11+
*.DOC diff=astextplain
12+
*.docx diff=astextplain
13+
*.DOCX diff=astextplain
14+
*.dot diff=astextplain
15+
*.DOT diff=astextplain
16+
*.pdf diff=astextplain
17+
*.PDF diff=astextplain
18+
*.rtf diff=astextplain
19+
*.RTF diff=astextplain

.gitignore

Lines changed: 63 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,74 @@
1+
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
2+
[Bb]in/
3+
[Oo]bj/
4+
5+
# Node.js tools
6+
bower_components/
7+
node_modules/
8+
9+
## Ignore Visual Studio temporary files, build results, and
10+
## files generated by popular Visual Studio add-ons.
11+
12+
# User-specific files
13+
.vs/
14+
.vscode/
15+
*.sln.docstates
116
*.suo
217
*.user
18+
*.userprefs
19+
20+
# Build results
21+
artifacts/
322
*.FileListAbsolute.txt
4-
bin/
5-
obj/
6-
*.ncb
7-
*.nlb
8-
*.aps
9-
*.clw
10-
*.pdb
23+
*.ilk
24+
*.log
25+
*.meta
1126
*.obj
1227
*.pch
28+
*.pdb
29+
*.pgc
30+
*.pgd
31+
*.rsp
32+
*.sbr
33+
*.tlb
34+
*.tlh
35+
*.tli
36+
*.tmp
1337
*.vspscc
38+
*.vssscc
1439
*_i.c
1540
*_p.c
16-
*.tlb
17-
*.tlh
41+
42+
# Visual Studio profiler
43+
*.psess
44+
*.vsp
45+
*.vspx
46+
47+
# ReSharper is a .NET coding add-in
48+
_ReSharper.*/
49+
50+
# Publishing
51+
PublishProfiles/
52+
*.Publish.xml
53+
54+
# NuGet Packages
55+
packages/
56+
*.nupkg
57+
58+
# Others
59+
.build/
60+
.nuget/
1861
*.bak
1962
*.[Cc]ache
20-
*.ilk
21-
*.log
22-
*.lib
23-
*.sbr
63+
*.dbmdl
64+
*.docstates
65+
*.orig
2466
*.scc
25-
*.sig
26-
_ReSharper*/
27-
*.orig
67+
*DS_Store
68+
69+
# Backup & report files from converting an old project file to a newer
70+
# Visual Studio version. Backup files are not needed, because we have git ;-)
71+
_UpgradeReport_Files/
72+
Backup*/
73+
UpgradeLog.htm
74+
UpgradeLog*.XML

0 commit comments

Comments
 (0)