11# # Ignore Visual Studio temporary files, build results, and
22# # files generated by popular Visual Studio add-ons.
33# #
4- # # Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
4+ # # Get latest from `dotnet new gitignore`
5+
6+ # Error log files
7+ compiler-diagnostics.sarif
8+
9+ # dotenv files
10+ .env
511
612# User-specific files
713* .rsuser
2935bld /
3036[Bb ]in /
3137[Oo ]bj /
32- [Oo ]ut /
3338[Ll ]og /
3439[Ll ]ogs /
3540
3641# Visual Studio Code cache/options directory
37- .vscode
42+ .vscode /
3843
3944# Visual Studio 2015/2017 cache/options directory
4045.vs /
@@ -61,11 +66,14 @@ dlldata.c
6166# Benchmark Results
6267BenchmarkDotNet.Artifacts /
6368
64- # .NET Core
69+ # .NET
6570project.lock.json
6671project.fragment.lock.json
6772artifacts /
6873
74+ # Tye
75+ .tye /
76+
6977# ASP.NET Scaffolding
7078ScaffoldingReadMe.txt
7179
@@ -94,6 +102,7 @@ StyleCopReport.xml
94102* .tmp_proj
95103* _wpftmp.csproj
96104* .log
105+ * .tlog
97106* .vspscc
98107* .vssscc
99108.builds
@@ -297,6 +306,17 @@ node_modules/
297306# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
298307* .vbw
299308
309+ # Visual Studio 6 auto-generated project file (contains which files were open etc.)
310+ * .vbp
311+
312+ # Visual Studio 6 workspace and project file (working project files containing files to include in project)
313+ * .dsw
314+ * .dsp
315+
316+ # Visual Studio 6 technical files
317+ * .ncb
318+ * .aps
319+
300320# Visual Studio LightSwitch build output
301321** /* .HTMLClient /GeneratedArtifacts
302322** /* .DesktopClient /GeneratedArtifacts
@@ -353,6 +373,9 @@ ASALocalRun/
353373# Local History for Visual Studio
354374.localhistory /
355375
376+ # Visual Studio History (VSHistory) files
377+ .vshistory /
378+
356379# BeatPulse healthcheck temp database
357380healthchecksdb
358381
@@ -363,4 +386,105 @@ MigrationBackup/
363386.ionide /
364387
365388# Fody - auto-generated XML schema
366- FodyWeavers.xsd
389+ FodyWeavers.xsd
390+
391+ # VS Code files for those working on multiple tools
392+ .vscode /*
393+ ! .vscode /settings.json
394+ ! .vscode /tasks.json
395+ ! .vscode /launch.json
396+ ! .vscode /extensions.json
397+ * .code-workspace
398+
399+ # Local History for Visual Studio Code
400+ .history /
401+
402+ # Windows Installer files from build outputs
403+ * .cab
404+ * .msi
405+ * .msix
406+ * .msm
407+ * .msp
408+
409+ # JetBrains Rider
410+ * .sln.iml
411+ .idea
412+
413+ # #
414+ # # Visual studio for Mac
415+ # #
416+
417+
418+ # globs
419+ Makefile.in
420+ * .userprefs
421+ * .usertasks
422+ config.make
423+ config.status
424+ aclocal.m4
425+ install-sh
426+ autom4te.cache /
427+ * .tar.gz
428+ tarballs /
429+ test-results /
430+
431+ # Mac bundle stuff
432+ * .dmg
433+ * .app
434+
435+ # content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
436+ # General
437+ .DS_Store
438+ .AppleDouble
439+ .LSOverride
440+
441+ # Icon must end with two \r
442+ Icon
443+
444+
445+ # Thumbnails
446+ ._ *
447+
448+ # Files that might appear in the root of a volume
449+ .DocumentRevisions-V100
450+ .fseventsd
451+ .Spotlight-V100
452+ .TemporaryItems
453+ .Trashes
454+ .VolumeIcon.icns
455+ .com.apple.timemachine.donotpresent
456+
457+ # Directories potentially created on remote AFP share
458+ .AppleDB
459+ .AppleDesktop
460+ Network Trash Folder
461+ Temporary Items
462+ .apdisk
463+
464+ # content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
465+ # Windows thumbnail cache files
466+ Thumbs.db
467+ ehthumbs.db
468+ ehthumbs_vista.db
469+
470+ # Dump file
471+ * .stackdump
472+
473+ # Folder config file
474+ [Dd ]esktop.ini
475+
476+ # Recycle Bin used on file shares
477+ $RECYCLE.BIN /
478+
479+ # Windows Installer files
480+ * .cab
481+ * .msi
482+ * .msix
483+ * .msm
484+ * .msp
485+
486+ # Windows shortcuts
487+ * .lnk
488+
489+ # Vim temporary swap files
490+ * .swp
0 commit comments