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