Skip to content
This repository was archived by the owner on Nov 8, 2018. It is now read-only.

Commit ac46425

Browse files
committed
Initial commit to add .gitignore and .gitattributes files.
0 parents  commit ac46425

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.gitattributes

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Source code files
2+
*.cs text
3+
*.vsixmanifest text
4+
*.config text
5+
*.resx text
6+
*.vstemplate text
7+
*.nuspec text
8+
*.md text
9+
*.txt text
10+
*.ps1 text
11+
LICENSE text
12+
13+
# Projects and solutions
14+
*.sln text
15+
*.csproj text
16+
17+
# Certainly binary files
18+
*.png binary
19+
*.ico binary
20+
*.snk binary

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Build output
2+
bin/
3+
obj/
4+
5+
# Artifacts of the IDE and build
6+
*.sln.ide/
7+
.vs/
8+
packages/
9+
*.suo
10+
*.user
11+
TestResults/
12+
.nuget/NuGet.exe
13+
build/nuget/
14+
*.log

0 commit comments

Comments
 (0)