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