1
1
# # Ignore Visual Studio temporary files, build results, and
2
2
# # files generated by popular Visual Studio add-ons.
3
3
# #
4
- # # Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
4
+ # # Get latest from `dotnet new gitignore`
5
+
6
+ # dotenv files
7
+ .env
5
8
6
9
# User-specific files
7
10
* .rsuser
@@ -23,6 +26,7 @@ mono_crash.*
23
26
[Rr ]eleases /
24
27
x64 /
25
28
x86 /
29
+ [Ww ][Ii ][Nn ]32 /
26
30
[Aa ][Rr ][Mm ]/
27
31
[Aa ][Rr ][Mm ]64 /
28
32
bld /
@@ -56,11 +60,17 @@ dlldata.c
56
60
# Benchmark Results
57
61
BenchmarkDotNet.Artifacts /
58
62
59
- # .NET Core
63
+ # .NET
60
64
project.lock.json
61
65
project.fragment.lock.json
62
66
artifacts /
63
67
68
+ # Tye
69
+ .tye /
70
+
71
+ # ASP.NET Scaffolding
72
+ ScaffoldingReadMe.txt
73
+
64
74
# StyleCop
65
75
StyleCopReport.xml
66
76
@@ -86,6 +96,7 @@ StyleCopReport.xml
86
96
* .tmp_proj
87
97
* _wpftmp.csproj
88
98
* .log
99
+ * .tlog
89
100
* .vspscc
90
101
* .vssscc
91
102
.builds
@@ -137,6 +148,11 @@ _TeamCity*
137
148
.axoCover /*
138
149
! .axoCover /settings.json
139
150
151
+ # Coverlet is a free, cross platform Code Coverage Tool
152
+ coverage * .json
153
+ coverage * .xml
154
+ coverage * .info
155
+
140
156
# Visual Studio code coverage results
141
157
* .coverage
142
158
* .coveragexml
@@ -284,6 +300,17 @@ node_modules/
284
300
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
285
301
* .vbw
286
302
303
+ # Visual Studio 6 auto-generated project file (contains which files were open etc.)
304
+ * .vbp
305
+
306
+ # Visual Studio 6 workspace and project file (working project files containing files to include in project)
307
+ * .dsw
308
+ * .dsp
309
+
310
+ # Visual Studio 6 technical files
311
+ * .ncb
312
+ * .aps
313
+
287
314
# Visual Studio LightSwitch build output
288
315
** /* .HTMLClient /GeneratedArtifacts
289
316
** /* .DesktopClient /GeneratedArtifacts
@@ -340,6 +367,9 @@ ASALocalRun/
340
367
# Local History for Visual Studio
341
368
.localhistory /
342
369
370
+ # Visual Studio History (VSHistory) files
371
+ .vshistory /
372
+
343
373
# BeatPulse healthcheck temp database
344
374
healthchecksdb
345
375
@@ -349,5 +379,106 @@ MigrationBackup/
349
379
# Ionide (cross platform F# VS Code tools) working folder
350
380
.ionide /
351
381
352
- # Rider
353
- .idea /
382
+ # Fody - auto-generated XML schema
383
+ FodyWeavers.xsd
384
+
385
+ # VS Code files for those working on multiple tools
386
+ .vscode /*
387
+ ! .vscode /settings.json
388
+ ! .vscode /tasks.json
389
+ ! .vscode /launch.json
390
+ ! .vscode /extensions.json
391
+ * .code-workspace
392
+
393
+ # Local History for Visual Studio Code
394
+ .history /
395
+
396
+ # Windows Installer files from build outputs
397
+ * .cab
398
+ * .msi
399
+ * .msix
400
+ * .msm
401
+ * .msp
402
+
403
+ # JetBrains Rider
404
+ * .sln.iml
405
+ .idea
406
+
407
+ # #
408
+ # # Visual studio for Mac
409
+ # #
410
+
411
+
412
+ # globs
413
+ Makefile.in
414
+ * .userprefs
415
+ * .usertasks
416
+ config.make
417
+ config.status
418
+ aclocal.m4
419
+ install-sh
420
+ autom4te.cache /
421
+ * .tar.gz
422
+ tarballs /
423
+ test-results /
424
+
425
+ # Mac bundle stuff
426
+ * .dmg
427
+ * .app
428
+
429
+ # content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
430
+ # General
431
+ .DS_Store
432
+ .AppleDouble
433
+ .LSOverride
434
+
435
+ # Icon must end with two \r
436
+ Icon
437
+
438
+
439
+ # Thumbnails
440
+ ._ *
441
+
442
+ # Files that might appear in the root of a volume
443
+ .DocumentRevisions-V100
444
+ .fseventsd
445
+ .Spotlight-V100
446
+ .TemporaryItems
447
+ .Trashes
448
+ .VolumeIcon.icns
449
+ .com.apple.timemachine.donotpresent
450
+
451
+ # Directories potentially created on remote AFP share
452
+ .AppleDB
453
+ .AppleDesktop
454
+ Network Trash Folder
455
+ Temporary Items
456
+ .apdisk
457
+
458
+ # content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
459
+ # Windows thumbnail cache files
460
+ Thumbs.db
461
+ ehthumbs.db
462
+ ehthumbs_vista.db
463
+
464
+ # Dump file
465
+ * .stackdump
466
+
467
+ # Folder config file
468
+ [Dd ]esktop.ini
469
+
470
+ # Recycle Bin used on file shares
471
+ $RECYCLE.BIN /
472
+
473
+ # Windows Installer files
474
+ * .cab
475
+ * .msi
476
+ * .msix
477
+ * .msm
478
+ * .msp
479
+
480
+ # Windows shortcuts
481
+ * .lnk
482
+
483
+ # Vim temporary swap files
484
+ * .swp
0 commit comments