Skip to content

Commit 6673191

Browse files
committed
update gitignore using dotnet new gitignore
1 parent db7321e commit 6673191

File tree

1 file changed

+135
-4
lines changed

1 file changed

+135
-4
lines changed

.gitignore

Lines changed: 135 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
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+
# dotenv files
7+
.env
58

69
# User-specific files
710
*.rsuser
@@ -23,6 +26,7 @@ mono_crash.*
2326
[Rr]eleases/
2427
x64/
2528
x86/
29+
[Ww][Ii][Nn]32/
2630
[Aa][Rr][Mm]/
2731
[Aa][Rr][Mm]64/
2832
bld/
@@ -56,11 +60,17 @@ dlldata.c
5660
# Benchmark Results
5761
BenchmarkDotNet.Artifacts/
5862

59-
# .NET Core
63+
# .NET
6064
project.lock.json
6165
project.fragment.lock.json
6266
artifacts/
6367

68+
# Tye
69+
.tye/
70+
71+
# ASP.NET Scaffolding
72+
ScaffoldingReadMe.txt
73+
6474
# StyleCop
6575
StyleCopReport.xml
6676

@@ -86,6 +96,7 @@ StyleCopReport.xml
8696
*.tmp_proj
8797
*_wpftmp.csproj
8898
*.log
99+
*.tlog
89100
*.vspscc
90101
*.vssscc
91102
.builds
@@ -137,6 +148,11 @@ _TeamCity*
137148
.axoCover/*
138149
!.axoCover/settings.json
139150

151+
# Coverlet is a free, cross platform Code Coverage Tool
152+
coverage*.json
153+
coverage*.xml
154+
coverage*.info
155+
140156
# Visual Studio code coverage results
141157
*.coverage
142158
*.coveragexml
@@ -284,6 +300,17 @@ node_modules/
284300
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
285301
*.vbw
286302

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+
287314
# Visual Studio LightSwitch build output
288315
**/*.HTMLClient/GeneratedArtifacts
289316
**/*.DesktopClient/GeneratedArtifacts
@@ -340,6 +367,9 @@ ASALocalRun/
340367
# Local History for Visual Studio
341368
.localhistory/
342369

370+
# Visual Studio History (VSHistory) files
371+
.vshistory/
372+
343373
# BeatPulse healthcheck temp database
344374
healthchecksdb
345375

@@ -349,5 +379,106 @@ MigrationBackup/
349379
# Ionide (cross platform F# VS Code tools) working folder
350380
.ionide/
351381

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

Comments
 (0)