Cristiano Magro
2020-10-13 3d38d757384579ee62dd2f58594e376a34585bfb
commit | author | age
167434 1 #################
MK 2 ## Eclipse
3 #################
4
5 *.pydevproject
6 .project
7 .metadata
8 bin/
9 tmp/
10 *.tmp
11 *.bak
12 *.swp
13 *~.nib
14 local.properties
15 .classpath
16 .settings/
17 .loadpath
18
19 # External tool builders
20 .externalToolBuilders/
21
22 # Locally stored "Eclipse launch configurations"
23 *.launch
24
25 # CDT-specific
26 .cproject
27
28 # PDT-specific
29 .buildpath
30
31
32 #################
33 ## Visual Studio
34 #################
35
36 ## Ignore Visual Studio temporary files, build results, and
37 ## files generated by popular Visual Studio add-ons.
38
39 # User-specific files
40 *.suo
41 *.user
42 *.sln.docstates
43
44 # Build results
45 [Dd]ebug/
46 [Rr]elease/
47 *_i.c
48 *_p.c
49 *.ilk
50 *.meta
51 *.pch
52 *.pdb
53 *.pgc
54 *.pgd
55 *.rsp
56 *.sbr
57 *.tlb
58 *.tli
59 *.tlh
60 *.tmp
61 *.vspscc
62 .builds
63 *.dotCover
64
65 ## TODO: If you have NuGet Package Restore enabled, uncomment this
66 #packages/
67
68 # Visual C++ cache files
69 ipch/
70 *.aps
71 *.ncb
72 *.opensdf
73 *.sdf
74
75 # Visual Studio profiler
76 *.psess
77 *.vsp
78
79 # ReSharper is a .NET coding add-in
80 _ReSharper*
81
82 # Installshield output folder
83 [Ee]xpress
84
85 # DocProject is a documentation generator add-in
86 DocProject/buildhelp/
87 DocProject/Help/*.HxT
88 DocProject/Help/*.HxC
89 DocProject/Help/*.hhc
90 DocProject/Help/*.hhk
91 DocProject/Help/*.hhp
92 DocProject/Help/Html2
93 DocProject/Help/html
94
95 # Click-Once directory
96 publish
97
98 # Others
99 [Bb]in
100 [Oo]bj
101 sql
102 TestResults
103 *.Cache
104 ClientBin
105 stylecop.*
106 ~$*
107 *.dbmdl
108 Generated_Code #added for RIA/Silverlight projects
109
110 # Backup & report files from converting an old project file to a newer
111 # Visual Studio version. Backup files are not needed, because we have git ;-)
112 _UpgradeReport_Files/
113 Backup*/
114 UpgradeLog*.XML
115
116
117
118 ############
119 ## Windows
120 ############
121
122 # Windows image file caches
123 Thumbs.db
124
125 # Folder config file
126 Desktop.ini
127
128
129 #############
130 ## Python
131 #############
132
133 *.py[co]
134
135 # Packages
136 *.egg
137 *.egg-info
138 dist
139 build
140 eggs
141 parts
142 bin
143 var
144 sdist
145 develop-eggs
146 .installed.cfg
147
148 # Installer logs
149 pip-log.txt
150
151 # Unit test / coverage reports
152 .coverage
153 .tox
154
155 #Translations
156 *.mo
157
158 #Mr Developer
159 .mr.developer.cfg
160
161 # Mac crap
162 .DS_Store
106e18 163
VE 164 #gedit backup files
165 *~
166