Skip to content

Commit 9ad79da

Browse files
committed
1 parent b0c162c commit 9ad79da

File tree

1 file changed

+127
-29
lines changed

1 file changed

+127
-29
lines changed

Diff for: .gitignore

+127-29
Original file line numberDiff line numberDiff line change
@@ -1,12 +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
5-
6-
# npm
7-
package-lock.json
4+
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
85

96
# User-specific files
7+
*.rsuser
108
*.suo
119
*.user
1210
*.userosscache
@@ -15,29 +13,41 @@ package-lock.json
1513
# User-specific files (MonoDevelop/Xamarin Studio)
1614
*.userprefs
1715

16+
# Mono auto generated files
17+
mono_crash.*
18+
1819
# Build results
1920
[Dd]ebug/
2021
[Dd]ebugPublic/
2122
[Rr]elease/
2223
[Rr]eleases/
2324
x64/
2425
x86/
26+
[Ww][Ii][Nn]32/
27+
[Aa][Rr][Mm]/
28+
[Aa][Rr][Mm]64/
2529
bld/
30+
[Bb]in/
2631
[Oo]bj/
2732
[Ll]og/
33+
[Ll]ogs/
2834

29-
# Visual Studio 2015 cache/options directory
35+
# Visual Studio 2015/2017 cache/options directory
3036
.vs/
3137
# Uncomment if you have tasks that create the project's static files in wwwroot
3238
#wwwroot/
3339

40+
# Visual Studio 2017 auto generated files
41+
Generated\ Files/
42+
3443
# MSTest test Results
3544
[Tt]est[Rr]esult*/
3645
[Bb]uild[Ll]og.*
3746

38-
# NUNIT
47+
# NUnit
3948
*.VisualState.xml
4049
TestResult.xml
50+
nunit-*.xml
4151

4252
# Build Results of an ATL Project
4353
[Dd]ebugPS/
@@ -51,25 +61,36 @@ BenchmarkDotNet.Artifacts/
5161
project.lock.json
5262
project.fragment.lock.json
5363
artifacts/
54-
**/Properties/launchSettings.json
5564

65+
# ASP.NET Scaffolding
66+
ScaffoldingReadMe.txt
67+
68+
# StyleCop
69+
StyleCopReport.xml
70+
71+
# Files built by Visual Studio
5672
*_i.c
5773
*_p.c
58-
*_i.h
74+
*_h.h
5975
*.ilk
6076
*.meta
6177
*.obj
78+
*.iobj
6279
*.pch
6380
*.pdb
81+
*.ipdb
6482
*.pgc
6583
*.pgd
84+
*.rsp
6685
*.sbr
6786
*.tlb
6887
*.tli
6988
*.tlh
7089
*.tmp
7190
*.tmp_proj
91+
*_wpftmp.csproj
7292
*.log
93+
*.tlog
7394
*.vspscc
7495
*.vssscc
7596
.builds
@@ -86,7 +107,7 @@ ipch/
86107
*.ncb
87108
*.opendb
88109
*.opensdf
89-
#*.sdf
110+
*.sdf
90111
*.cachefile
91112
*.VC.db
92113
*.VC.VC.opendb
@@ -97,6 +118,9 @@ ipch/
97118
*.vspx
98119
*.sap
99120

121+
# Visual Studio Trace Files
122+
*.e2e
123+
100124
# TFS 2012 Local Workspace
101125
$tf/
102126

@@ -108,9 +132,6 @@ _ReSharper*/
108132
*.[Rr]e[Ss]harper
109133
*.DotSettings.user
110134

111-
# JustCode is a .NET coding add-in
112-
.JustCode
113-
114135
# TeamCity is a build add-in
115136
_TeamCity*
116137

@@ -121,6 +142,11 @@ _TeamCity*
121142
.axoCover/*
122143
!.axoCover/settings.json
123144

145+
# Coverlet is a free, cross platform Code Coverage Tool
146+
coverage*.json
147+
coverage*.xml
148+
coverage*.info
149+
124150
# Visual Studio code coverage results
125151
*.coverage
126152
*.coveragexml
@@ -168,12 +194,14 @@ PublishScripts/
168194

169195
# NuGet Packages
170196
*.nupkg
197+
# NuGet Symbol Packages
198+
*.snupkg
171199
# The packages folder can be ignored because of Package Restore
172-
**/packages/*
200+
**/[Pp]ackages/*
173201
# except build/, which is used as an MSBuild target.
174-
!**/packages/build/
202+
!**/[Pp]ackages/build/
175203
# Uncomment if necessary however generally it will be regenerated when needed
176-
#!**/packages/repositories.config
204+
#!**/[Pp]ackages/repositories.config
177205
# NuGet v3's project.json files produces more ignorable files
178206
*.nuget.props
179207
*.nuget.targets
@@ -192,12 +220,14 @@ BundleArtifacts/
192220
Package.StoreAssociation.xml
193221
_pkginfo.txt
194222
*.appx
223+
*.appxbundle
224+
*.appxupload
195225

196226
# Visual Studio cache files
197227
# files ending in .cache can be ignored
198228
*.[Cc]ache
199229
# but keep track of directories ending in .cache
200-
!*.[Cc]ache/
230+
!?*.[Cc]ache/
201231

202232
# Others
203233
ClientBin/
@@ -210,6 +240,10 @@ ClientBin/
210240
*.publishsettings
211241
orleans.codegen.cs
212242

243+
# Including strong name files can present a security risk
244+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
245+
#*.snk
246+
213247
# Since there are multiple workflows, uncomment next line to ignore bower_components
214248
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
215249
#bower_components/
@@ -224,16 +258,22 @@ _UpgradeReport_Files/
224258
Backup*/
225259
UpgradeLog*.XML
226260
UpgradeLog*.htm
261+
ServiceFabricBackup/
262+
*.rptproj.bak
227263

228264
# SQL Server files
229-
#*.mdf
230-
#*.ldf
231-
#*.ndf
265+
*.mdf
266+
*.ldf
267+
*.ndf
232268

233269
# Business Intelligence projects
234270
*.rdl.data
235271
*.bim.layout
236272
*.bim_*.settings
273+
*.rptproj.rsuser
274+
*- [Bb]ackup.rdl
275+
*- [Bb]ackup ([0-9]).rdl
276+
*- [Bb]ackup ([0-9][0-9]).rdl
237277

238278
# Microsoft Fakes
239279
FakesAssemblies/
@@ -245,9 +285,6 @@ FakesAssemblies/
245285
.ntvs_analysis.dat
246286
node_modules/
247287

248-
# Typescript v1 declaration files
249-
typings/
250-
251288
# Visual Studio 6 build log
252289
*.plg
253290

@@ -257,6 +294,17 @@ typings/
257294
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
258295
*.vbw
259296

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+
260308
# Visual Studio LightSwitch build output
261309
**/*.HTMLClient/GeneratedArtifacts
262310
**/*.DesktopClient/GeneratedArtifacts
@@ -272,12 +320,8 @@ paket-files/
272320
# FAKE - F# Make
273321
.fake/
274322

275-
# JetBrains Rider
276-
.idea/
277-
*.sln.iml
278-
279-
# CodeRush
280-
.cr/
323+
# CodeRush personal settings
324+
.cr/personal
281325

282326
# Python Tools for Visual Studio (PTVS)
283327
__pycache__/
@@ -297,4 +341,58 @@ __pycache__/
297341
*.btp.cs
298342
*.btm.cs
299343
*.odx.cs
300-
*.xsd.cs
344+
*.xsd.cs
345+
346+
# OpenCover UI analysis results
347+
OpenCover/
348+
349+
# Azure Stream Analytics local run output
350+
ASALocalRun/
351+
352+
# MSBuild Binary and Structured Log
353+
*.binlog
354+
355+
# NVidia Nsight GPU debugger configuration file
356+
*.nvuser
357+
358+
# MFractors (Xamarin productivity tool) working folder
359+
.mfractor/
360+
361+
# Local History for Visual Studio
362+
.localhistory/
363+
364+
# Visual Studio History (VSHistory) files
365+
.vshistory/
366+
367+
# BeatPulse healthcheck temp database
368+
healthchecksdb
369+
370+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
371+
MigrationBackup/
372+
373+
# Ionide (cross platform F# VS Code tools) working folder
374+
.ionide/
375+
376+
# Fody - auto-generated XML schema
377+
FodyWeavers.xsd
378+
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

0 commit comments

Comments
 (0)