Merge pull request #11187 from wtgodbe/NonWindowsR2R
[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 **/packages/*
153 project.lock.json
154
155 # Windows Azure Build Output
156 csx/
157 *.build.csdef
158
159 # Windows Store app package directory
160 AppPackages/
161
162 # Others
163 sql/
164 *.Cache
165 ClientBin/
166 [Ss]tyle[Cc]op.*
167 ~$*
168 *.dbmdl
169 *.dbproj.schemaview
170 *.pfx
171 *.publishsettings
172 node_modules/
173 *.metaproj
174 *.metaproj.tmp
175 .atom-build.json
176 tags
177 TAGS
178
179 # RIA/Silverlight projects
180 Generated_Code/
181
182 # Backup & report files from converting an old project file
183 # to a newer Visual Studio version. Backup files are not needed,
184 # because we have git ;-)
185 _UpgradeReport_Files/
186 Backup*/
187 UpgradeLog*.XML
188 UpgradeLog*.htm
189
190 # SQL Server files
191 *.mdf
192 *.ldf
193
194 # Business Intelligence projects
195 *.rdl.data
196 *.bim.layout
197 *.bim_*.settings
198
199 # Microsoft Fakes
200 FakesAssemblies/
201
202 # C/C++ extension for Visual Studio Code
203 browse.VC.db
204
205 # Local settings folder for Visual Studio Code
206 .vscode/
207
208 ### MonoDevelop ###
209
210 *.pidb
211 *.userprefs
212
213 ### Windows ###
214
215 # Windows image file caches
216 Thumbs.db
217 ehthumbs.db
218
219 # Folder config file
220 Desktop.ini
221
222 # Recycle Bin used on file shares
223 $RECYCLE.BIN/
224
225 # Windows Installer files
226 *.cab
227 *.msi
228 *.msm
229 *.msp
230
231 # Windows shortcuts
232 *.lnk
233
234 # Common binary extensions on Windows
235 *.exe
236 *.dll
237 *.lib
238
239 ### Linux ###
240
241 *~
242 \#*\#
243
244 # KDE directory preferences
245 .directory
246
247 ### OSX ###
248
249 .DS_Store
250 .AppleDouble
251 .LSOverride
252
253 # Icon must end with two \r
254 Icon
255
256 # Thumbnails
257 ._*
258
259 # Files that might appear on external disk
260 .Spotlight-V100
261 .Trashes
262
263 # Directories potentially created on remote AFP share
264 .AppleDB
265 .AppleDesktop
266 Network Trash Folder
267 Temporary Items
268 .apdisk
269
270 # We have some checked in prebuilt generated files
271 !src/pal/prebuilt/idl/*_i.c
272
273 # Valid 'debug' folder, that contains CLR debugging code
274 !src/debug
275
276 # Ignore folders created by the test build
277 TestWrappers_x64_[d|D]ebug
278 TestWrappers_x64_[c|C]hecked
279 TestWrappers_x64_[r|R]elease
280 TestWrappers_x86_[d|D]ebug
281 TestWrappers_x86_[c|C]hecked
282 TestWrappers_x86_[r|R]elease
283 TestWrappers_arm_[d|D]ebug
284 TestWrappers_arm_[c|C]hecked
285 TestWrappers_arm_[r|R]elease
286 TestWrappers_arm64_[d|D]ebug
287 TestWrappers_arm64_[c|C]hecked
288 TestWrappers_arm64_[r|R]elease
289 tests/src/common/test_runtime/project.json
290
291 Vagrantfile
292 .vagrant
293
294 # CMake files
295 CMakeFiles/
296 cmake_install.cmake
297 CMakeCache.txt
298 Makefile
299
300 # Cross compilation
301 cross/rootfs/*
302 cross/android-rootfs/*
303 # add x86 as it is ignored in 'Build results'
304 !cross/x86
305
306 #python import files
307 *.pyc
308
309 # JIT32 files
310 src/jit32
311
312 # performance testing sandbox
313 sandbox
314
315 #IL linker for testing
316 linker