Fix watson bucketing/broken triage dumps (#26670)
[platform/upstream/coreclr.git] / .gitignore
1 syntax: glob
2
3 [Bb]inaries/
4
5 # Build tools related files
6 /[Tt]ools/
7
8 ### VisualStudio ###
9
10 # User-specific files
11 *.suo
12 *.user
13 *.userosscache
14 *.sln.docstates
15 *.swp
16
17 # Build results
18 [Dd]ebug/
19 [Dd]ebugPublic/
20 [Rr]elease/
21 [Rr]eleases/
22 build/
23 bld/
24 [Bb]in/
25 [Oo]bj/
26 msbuild.log
27 msbuild.binlog
28
29 # add back architecture directories ignored in 'Build results'
30 !tests/x86
31 !src/mscorlib/src/System/Runtime/Intrinsics/X86
32 !tests/src/JIT/HardwareIntrinsics/X86
33
34 # Visual Studio 2015
35 .vs/
36
37 # Visual Studio 2015 Pre-CTP6
38 *.sln.ide
39 *.ide/
40
41 # MSTest test Results
42 [Tt]est[Rr]esult*/
43 [Bb]uild[Ll]og.*
44
45 #NUNIT
46 *.VisualState.xml
47 TestResult.xml
48
49 # Build Results of an ATL Project
50 [Dd]ebugPS/
51 [Rr]eleasePS/
52 dlldata.c
53
54 *_i.c
55 *_p.c
56 *.ilk
57 *.meta
58 *.obj
59 *.pch
60 *.pdb
61 *.pgc
62 *.pgd
63 *.rsp
64 *.sbr
65 *.tlb
66 *.tli
67 *.tlh
68 *.tmp
69 *.tmp_proj
70 *.log
71 *.html
72 *.vspscc
73 *.vssscc
74 .builds
75 *.pidb
76 *.svclog
77 *.scc
78
79 # Chutzpah Test files
80 _Chutzpah*
81
82 # Visual C++ cache files
83 ipch/
84 *.aps
85 *.ncb
86 *.opendb
87 *.opensdf
88 *.sdf
89 *.cachefile
90 *.VC.db
91
92 # Visual Studio profiler
93 *.psess
94 *.vsp
95 *.vspx
96
97 # TFS 2012 Local Workspace
98 $tf/
99
100 # Guidance Automation Toolkit
101 *.gpState
102
103 # ReSharper is a .NET coding add-in
104 _ReSharper*/
105 *.[Rr]e[Ss]harper
106 *.DotSettings.user
107
108 # JustCode is a .NET coding addin-in
109 .JustCode
110
111 # TeamCity is a build add-in
112 _TeamCity*
113
114 # DotCover is a Code Coverage Tool
115 *.dotCover
116
117 # NCrunch
118 _NCrunch_*
119 .*crunch*.local.xml
120
121 # MightyMoose
122 *.mm.*
123 AutoTest.Net/
124
125 # Web workbench (sass)
126 .sass-cache/
127
128 # Installshield output folder
129 [Ee]xpress/
130
131 # DocProject is a documentation generator add-in
132 DocProject/buildhelp/
133 DocProject/Help/*.HxT
134 DocProject/Help/*.HxC
135 DocProject/Help/*.hhc
136 DocProject/Help/*.hhk
137 DocProject/Help/*.hhp
138 DocProject/Help/Html2
139 DocProject/Help/html
140
141 # Click-Once directory
142 publish/
143
144 # Publish Web Output
145 *.[Pp]ublish.xml
146 *.azurePubxml
147 *.pubxml
148 *.publishproj
149
150 # NuGet Packages
151 *.nupkg
152 *.nuget.g.props
153 *.nuget.g.targets
154 *.nuget.cache
155 **/packages/*
156 *.nuget.dgspec.json
157 project.lock.json
158 project.assets.json
159
160 # Windows Azure Build Output
161 csx/
162 *.build.csdef
163
164 # Windows Store app package directory
165 AppPackages/
166
167 # Others
168 sql/
169 *.Cache
170 ClientBin/
171 [Ss]tyle[Cc]op.*
172 ~$*
173 *.dbmdl
174 *.dbproj.schemaview
175 *.pfx
176 *.publishsettings
177 node_modules/
178 *.metaproj
179 *.metaproj.tmp
180 .atom-build.json
181 tags
182 TAGS
183
184 # RIA/Silverlight projects
185 Generated_Code/
186
187 # Backup & report files from converting an old project file
188 # to a newer Visual Studio version. Backup files are not needed,
189 # because we have git ;-)
190 _UpgradeReport_Files/
191 Backup*/
192 UpgradeLog*.XML
193 UpgradeLog*.htm
194
195 # SQL Server files
196 *.mdf
197 *.ldf
198
199 # Business Intelligence projects
200 *.rdl.data
201 *.bim.layout
202 *.bim_*.settings
203
204 # Microsoft Fakes
205 FakesAssemblies/
206
207 # C/C++ extension for Visual Studio Code
208 browse.VC.db
209
210 # Local settings folder for Visual Studio Code
211 **/.vscode/**
212 !**/.vscode/c_cpp_properties.json
213
214 ### MonoDevelop ###
215
216 *.pidb
217 *.userprefs
218
219 ### Windows ###
220
221 # Windows image file caches
222 Thumbs.db
223 ehthumbs.db
224
225 # Folder config file
226 Desktop.ini
227
228 # Recycle Bin used on file shares
229 $RECYCLE.BIN/
230
231 # Windows Installer files
232 *.cab
233 *.msi
234 *.msm
235 *.msp
236
237 # Windows shortcuts
238 *.lnk
239
240 # Common binary extensions on Windows
241 *.exe
242 *.exe.stackdump
243 *.dll
244 *.lib
245
246 ### Linux ###
247
248 *~
249 \#*\#
250
251 # KDE directory preferences
252 .directory
253
254 ### OSX ###
255
256 .DS_Store
257 .AppleDouble
258 .LSOverride
259
260 # Icon must end with two \r
261 Icon
262
263 # Thumbnails
264 ._*
265
266 # Files that might appear on external disk
267 .Spotlight-V100
268 .Trashes
269
270 # Directories potentially created on remote AFP share
271 .AppleDB
272 .AppleDesktop
273 Network Trash Folder
274 Temporary Items
275 .apdisk
276
277 # We have some checked in prebuilt generated files
278 !src/pal/prebuilt/idl/*_i.c
279
280 # Valid 'debug' folder, that contains CLR debugging code
281 !src/debug
282
283 # Ignore folders created by the test build
284 TestWrappers_x64_[d|D]ebug
285 TestWrappers_x64_[c|C]hecked
286 TestWrappers_x64_[r|R]elease
287 TestWrappers_x86_[d|D]ebug
288 TestWrappers_x86_[c|C]hecked
289 TestWrappers_x86_[r|R]elease
290 TestWrappers_arm_[d|D]ebug
291 TestWrappers_arm_[c|C]hecked
292 TestWrappers_arm_[r|R]elease
293 TestWrappers_arm64_[d|D]ebug
294 TestWrappers_arm64_[c|C]hecked
295 TestWrappers_arm64_[r|R]elease
296 tests/src/common/test_runtime/project.json
297
298 Vagrantfile
299 .vagrant
300
301 # CMake files
302 CMakeFiles/
303 cmake_install.cmake
304 CMakeCache.txt
305 Makefile
306
307 # Cross compilation
308 cross/rootfs/*
309 cross/android-rootfs/*
310 # add x86 as it is ignored in 'Build results'
311 !cross/x86
312
313 #python import files
314 *.pyc
315
316 # JIT32 files
317 src/jit32
318
319 # performance testing sandbox
320 sandbox
321
322 #IL linker for testing
323 linker
324
325 # Arcade files
326 /artifacts/toolset
327 /.packages
328 /.dotnet