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