Skip to content

Commit 8008e5e

Browse files
committed
Refresh .gitignore from source, preserving our additions
1 parent 2aae844 commit 8008e5e

File tree

1 file changed

+50
-8
lines changed

1 file changed

+50
-8
lines changed

.gitignore

+50-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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 https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
55

66
# User-specific files
77
*.rsuser
@@ -90,16 +90,14 @@ StyleCopReport.xml
9090
*.tmp_proj
9191
*_wpftmp.csproj
9292
*.log
93+
*.tlog
9394
*.vspscc
9495
*.vssscc
9596
.builds
9697
*.pidb
9798
*.svclog
9899
*.scc
99100

100-
# MacOS file systems
101-
**/.DS_STORE
102-
103101
# Chutzpah Test files
104102
_Chutzpah*
105103

@@ -134,9 +132,6 @@ _ReSharper*/
134132
*.[Rr]e[Ss]harper
135133
*.DotSettings.user
136134

137-
# JetBrains Rider
138-
.idea/
139-
140135
# TeamCity is a build add-in
141136
_TeamCity*
142137

@@ -148,7 +143,9 @@ _TeamCity*
148143
!.axoCover/settings.json
149144

150145
# Coverlet is a free, cross platform Code Coverage Tool
151-
coverage*[.json, .xml, .info]
146+
coverage*.json
147+
coverage*.xml
148+
coverage*.info
152149

153150
# Visual Studio code coverage results
154151
*.coverage
@@ -297,6 +294,17 @@ node_modules/
297294
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
298295
*.vbw
299296

297+
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
298+
*.vbp
299+
300+
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
301+
*.dsw
302+
*.dsp
303+
304+
# Visual Studio 6 technical files
305+
*.ncb
306+
*.aps
307+
300308
# Visual Studio LightSwitch build output
301309
**/*.HTMLClient/GeneratedArtifacts
302310
**/*.DesktopClient/GeneratedArtifacts
@@ -353,6 +361,9 @@ ASALocalRun/
353361
# Local History for Visual Studio
354362
.localhistory/
355363

364+
# Visual Studio History (VSHistory) files
365+
.vshistory/
366+
356367
# BeatPulse healthcheck temp database
357368
healthchecksdb
358369

@@ -365,5 +376,36 @@ MigrationBackup/
365376
# Fody - auto-generated XML schema
366377
FodyWeavers.xsd
367378

379+
# VS Code files for those working on multiple tools
380+
.vscode/*
381+
!.vscode/settings.json
382+
!.vscode/tasks.json
383+
!.vscode/launch.json
384+
!.vscode/extensions.json
385+
*.code-workspace
386+
387+
# Local History for Visual Studio Code
388+
.history/
389+
390+
# Windows Installer files from build outputs
391+
*.cab
392+
*.msi
393+
*.msix
394+
*.msm
395+
*.msp
396+
397+
# JetBrains Rider
398+
*.sln.iml
399+
400+
#############################################
401+
### Additions specific to this repository ###
402+
#############################################
403+
404+
# MacOS file systems
405+
**/.DS_STORE
406+
368407
# Sqlite example databases
369408
*.db
409+
410+
# JetBrains Rider
411+
.idea/

0 commit comments

Comments
 (0)