Skip to content

Commit 59b7569

Browse files
Add initial .gitattributes and .gitignore files
1 parent 72a117c commit 59b7569

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set
2+
* text=auto
3+
4+
# Explicitly declare files that should always be converted to LF regardless of platform
5+
*.dotsettings text eol=lf

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#Ignore thumbnails created by Windows
2+
Thumbs.db
3+
4+
#Ignore metadata created by OSX
5+
.DS_Store
6+
._*
7+
8+
#Ignore files created by Visual Studio
9+
.vs/
10+
*.user
11+
*.suo
12+
*.tmp_proj
13+
*.dbmdl
14+
*.dbproj.schemaview
15+
*.cache
16+
*.vsdoc
17+
[Oo]bj/
18+
[Bb]in/
19+
[Dd]ebug/
20+
[Rr]elease/
21+
[Rr][Cc]/
22+
[Cc]ode[Cc]overage/
23+
[Ff]x[Cc]op/
24+
[Ll]og/
25+
[Tt]emp/
26+
27+
# Ignore NuGet Packages
28+
*.nupkg
29+
**/packages/*
30+
31+
#Ignore files created by ReSharper
32+
_ReSharper*/
33+
34+
#Ignore files created by NUnit
35+
TestResult.xml
36+
*.VisualState.xml

0 commit comments

Comments
 (0)