Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit f64ba05

Browse files
committed
git meta files
1 parent d330c35 commit f64ba05

File tree

2 files changed

+125
-0
lines changed

2 files changed

+125
-0
lines changed

.gitattributes

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* eol=crlf
3+
4+
# Denote all files that are truly binary and should not be modified.
5+
*.snk binary
6+
*.exe binary
7+
8+
*.dll binary
9+
*.png binary
10+
*.jpg binary
11+
*.gif binary
12+
*.bmp binary
13+
*.zip binary
14+
*.ico binary
15+
*.dll binary
16+
17+
18+

.gitignore

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
2+
[Bb]in/
3+
[Oo]bj/
4+
5+
# mstest test results
6+
TestResults
7+
8+
## Ignore Visual Studio temporary files, build results, and
9+
## files generated by popular Visual Studio add-ons.
10+
11+
# User-specific files
12+
*.suo
13+
*.user
14+
*.sln.docstates
15+
16+
# Build results
17+
[Dd]ebug/
18+
[Rr]elease/
19+
x64/
20+
*_i.c
21+
*_p.c
22+
*.ilk
23+
*.meta
24+
*.obj
25+
*.pch
26+
*.pdb
27+
*.pgc
28+
*.pgd
29+
*.rsp
30+
*.sbr
31+
*.tlb
32+
*.tli
33+
*.tlh
34+
*.tmp
35+
*.log
36+
*.vspscc
37+
*.vssscc
38+
.builds
39+
40+
41+
# Visual Studio profiler
42+
*.psess
43+
*.vsp
44+
*.vspx
45+
46+
# Guidance Automation Toolkit
47+
*.gpState
48+
49+
# ReSharper is a .NET coding add-in
50+
_ReSharper*
51+
52+
# NCrunch
53+
*.ncrunch*
54+
.*crunch*.local.xml
55+
_NCrunch_*
56+
57+
# Installshield output folder
58+
[Ee]xpress
59+
60+
# DocProject is a documentation generator add-in
61+
DocProject/buildhelp/
62+
DocProject/Help/*.HxT
63+
DocProject/Help/*.HxC
64+
DocProject/Help/*.hhc
65+
DocProject/Help/*.hhk
66+
DocProject/Help/*.hhp
67+
DocProject/Help/Html2
68+
DocProject/Help/html
69+
70+
# Click-Once directory
71+
publish
72+
73+
# Publish Web Output
74+
*.Publish.xml
75+
76+
# NuGet Packages Directory
77+
packages
78+
nuget_packages/
79+
80+
# Windows Azure Build Output
81+
csx
82+
*.build.csdef
83+
84+
# Windows Store app package directory
85+
AppPackages/
86+
87+
# Others
88+
[Bb]in
89+
[Oo]bj
90+
sql
91+
TestResults
92+
[Tt]est[Rr]esult*
93+
*.Cache
94+
ClientBin
95+
[Ss]tyle[Cc]op.*
96+
~$*
97+
*.dbmdl
98+
Generated_Code #added for RIA/Silverlight projects
99+
100+
# Backup & report files from converting an old project file to a newer
101+
# Visual Studio version. Backup files are not needed, because we have git ;-)
102+
_UpgradeReport_Files/
103+
Backup*/
104+
UpgradeLog*.XML
105+
/.project
106+
107+
*.orig

0 commit comments

Comments
 (0)