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