Merge pull request #15396 from BruceForstall/LimitArm64Hardware
[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 x64/
23 x86/
24 build/
25 bld/
26 [Bb]in/
27 [Oo]bj/
28 msbuild.log
29
30 # add back architecture directories ignored in 'Build results'
31 !tests/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 *_i.h
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 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 *.dll
241 *.lib
242
243 ### Linux ###
244
245 *~
246 \#*\#
247
248 # KDE directory preferences
249 .directory
250
251 ### OSX ###
252
253 .DS_Store
254 .AppleDouble
255 .LSOverride
256
257 # Icon must end with two \r
258 Icon
259
260 # Thumbnails
261 ._*
262
263 # Files that might appear on external disk
264 .Spotlight-V100
265 .Trashes
266
267 # Directories potentially created on remote AFP share
268 .AppleDB
269 .AppleDesktop
270 Network Trash Folder
271 Temporary Items
272 .apdisk
273
274 # We have some checked in prebuilt generated files
275 !src/pal/prebuilt/idl/*_i.c
276
277 # Valid 'debug' folder, that contains CLR debugging code
278 !src/debug
279
280 # Ignore folders created by the test build
281 TestWrappers_x64_[d|D]ebug
282 TestWrappers_x64_[c|C]hecked
283 TestWrappers_x64_[r|R]elease
284 TestWrappers_x86_[d|D]ebug
285 TestWrappers_x86_[c|C]hecked
286 TestWrappers_x86_[r|R]elease
287 TestWrappers_arm_[d|D]ebug
288 TestWrappers_arm_[c|C]hecked
289 TestWrappers_arm_[r|R]elease
290 TestWrappers_arm64_[d|D]ebug
291 TestWrappers_arm64_[c|C]hecked
292 TestWrappers_arm64_[r|R]elease
293 tests/src/common/test_runtime/project.json
294
295 Vagrantfile
296 .vagrant
297
298 # CMake files
299 CMakeFiles/
300 cmake_install.cmake
301 CMakeCache.txt
302 Makefile
303
304 # Cross compilation
305 cross/rootfs/*
306 cross/android-rootfs/*
307 # add x86 as it is ignored in 'Build results'
308 !cross/x86
309
310 #python import files
311 *.pyc
312
313 # JIT32 files
314 src/jit32
315
316 # performance testing sandbox
317 sandbox
318
319 #IL linker for testing
320 linker