Skip to content

Commit f98a234

Browse files
committed
add .gitignore
1 parent 2a781af commit f98a234

File tree

1 file changed

+120
-0
lines changed

1 file changed

+120
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)