Skip to content

Commit 970f773

Browse files
committed
Updated .gitignore
1 parent b343d87 commit 970f773

File tree

2 files changed

+125
-24
lines changed

2 files changed

+125
-24
lines changed

.gitignore

Lines changed: 124 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1-
##### Copied from https://github.com/github/gitignore/blob/7792e50daeaa6c07460484704671d1dc9f0045a7/VisualStudio.gitignore
1+
# NCrunch
2+
*.ncrunchsolution
3+
*.ncrunchsolution.user
4+
*.ncrunchproject
5+
6+
# Mono's local registry
7+
mono
8+
9+
##### Copied from https://github.com/github/gitignore/blob/7b22f8ab6c85b4ef1469d72a8ba96462e2a44853/VisualStudio.gitignore
210

311
## Ignore Visual Studio temporary files, build results, and
412
## files generated by popular Visual Studio add-ons.
513
##
6-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
14+
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
715

816
# User-specific files
17+
*.rsuser
918
*.suo
1019
*.user
1120
*.userosscache
@@ -14,30 +23,41 @@
1423
# User-specific files (MonoDevelop/Xamarin Studio)
1524
*.userprefs
1625

26+
# Mono auto generated files
27+
mono_crash.*
28+
1729
# Build results
1830
[Dd]ebug/
1931
[Dd]ebugPublic/
2032
[Rr]elease/
2133
[Rr]eleases/
2234
x64/
2335
x86/
36+
[Ww][Ii][Nn]32/
37+
[Aa][Rr][Mm]/
38+
[Aa][Rr][Mm]64/
2439
bld/
2540
[Bb]in/
2641
[Oo]bj/
2742
[Ll]og/
43+
[Ll]ogs/
2844

29-
# Visual Studio 2015 cache/options directory
45+
# Visual Studio 2015/2017 cache/options directory
3046
.vs/
3147
# Uncomment if you have tasks that create the project's static files in wwwroot
3248
#wwwroot/
3349

50+
# Visual Studio 2017 auto generated files
51+
Generated\ Files/
52+
3453
# MSTest test Results
3554
[Tt]est[Rr]esult*/
3655
[Bb]uild[Ll]og.*
3756

38-
# NUNIT
57+
# NUnit
3958
*.VisualState.xml
4059
TestResult.xml
60+
nunit-*.xml
4161

4262
# Build Results of an ATL Project
4363
[Dd]ebugPS/
@@ -51,16 +71,24 @@ BenchmarkDotNet.Artifacts/
5171
project.lock.json
5272
project.fragment.lock.json
5373
artifacts/
54-
**/Properties/launchSettings.json
5574

75+
# ASP.NET Scaffolding
76+
ScaffoldingReadMe.txt
77+
78+
# StyleCop
79+
StyleCopReport.xml
80+
81+
# Files built by Visual Studio
5682
*_i.c
5783
*_p.c
58-
*_i.h
84+
*_h.h
5985
*.ilk
6086
*.meta
6187
*.obj
88+
*.iobj
6289
*.pch
6390
*.pdb
91+
*.ipdb
6492
*.pgc
6593
*.pgd
6694
*.rsp
@@ -70,7 +98,9 @@ artifacts/
7098
*.tlh
7199
*.tmp
72100
*.tmp_proj
101+
*_wpftmp.csproj
73102
*.log
103+
*.tlog
74104
*.vspscc
75105
*.vssscc
76106
.builds
@@ -112,9 +142,6 @@ _ReSharper*/
112142
*.[Rr]e[Ss]harper
113143
*.DotSettings.user
114144

115-
# JustCode is a .NET coding add-in
116-
.JustCode
117-
118145
# TeamCity is a build add-in
119146
_TeamCity*
120147

@@ -125,6 +152,11 @@ _TeamCity*
125152
.axoCover/*
126153
!.axoCover/settings.json
127154

155+
# Coverlet is a free, cross platform Code Coverage Tool
156+
coverage*.json
157+
coverage*.xml
158+
coverage*.info
159+
128160
# Visual Studio code coverage results
129161
*.coverage
130162
*.coveragexml
@@ -172,12 +204,14 @@ PublishScripts/
172204

173205
# NuGet Packages
174206
*.nupkg
207+
# NuGet Symbol Packages
208+
*.snupkg
175209
# The packages folder can be ignored because of Package Restore
176-
**/packages/*
210+
**/[Pp]ackages/*
177211
# except build/, which is used as an MSBuild target.
178-
!**/packages/build/
212+
!**/[Pp]ackages/build/
179213
# Uncomment if necessary however generally it will be regenerated when needed
180-
#!**/packages/repositories.config
214+
#!**/[Pp]ackages/repositories.config
181215
# NuGet v3's project.json files produces more ignorable files
182216
*.nuget.props
183217
*.nuget.targets
@@ -196,12 +230,14 @@ BundleArtifacts/
196230
Package.StoreAssociation.xml
197231
_pkginfo.txt
198232
*.appx
233+
*.appxbundle
234+
*.appxupload
199235

200236
# Visual Studio cache files
201237
# files ending in .cache can be ignored
202238
*.[Cc]ache
203239
# but keep track of directories ending in .cache
204-
!*.[Cc]ache/
240+
!?*.[Cc]ache/
205241

206242
# Others
207243
ClientBin/
@@ -214,6 +250,10 @@ ClientBin/
214250
*.publishsettings
215251
orleans.codegen.cs
216252

253+
# Including strong name files can present a security risk
254+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
255+
#*.snk
256+
217257
# Since there are multiple workflows, uncomment next line to ignore bower_components
218258
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
219259
#bower_components/
@@ -228,6 +268,8 @@ _UpgradeReport_Files/
228268
Backup*/
229269
UpgradeLog*.XML
230270
UpgradeLog*.htm
271+
ServiceFabricBackup/
272+
*.rptproj.bak
231273

232274
# SQL Server files
233275
*.mdf
@@ -238,6 +280,10 @@ UpgradeLog*.htm
238280
*.rdl.data
239281
*.bim.layout
240282
*.bim_*.settings
283+
*.rptproj.rsuser
284+
*- [Bb]ackup.rdl
285+
*- [Bb]ackup ([0-9]).rdl
286+
*- [Bb]ackup ([0-9][0-9]).rdl
241287

242288
# Microsoft Fakes
243289
FakesAssemblies/
@@ -249,9 +295,6 @@ FakesAssemblies/
249295
.ntvs_analysis.dat
250296
node_modules/
251297

252-
# Typescript v1 declaration files
253-
typings/
254-
255298
# Visual Studio 6 build log
256299
*.plg
257300

@@ -261,6 +304,17 @@ typings/
261304
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
262305
*.vbw
263306

307+
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
308+
*.vbp
309+
310+
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
311+
*.dsw
312+
*.dsp
313+
314+
# Visual Studio 6 technical files
315+
*.ncb
316+
*.aps
317+
264318
# Visual Studio LightSwitch build output
265319
**/*.HTMLClient/GeneratedArtifacts
266320
**/*.DesktopClient/GeneratedArtifacts
@@ -276,12 +330,8 @@ paket-files/
276330
# FAKE - F# Make
277331
.fake/
278332

279-
# JetBrains Rider
280-
.idea/
281-
*.sln.iml
282-
283-
# CodeRush
284-
.cr/
333+
# CodeRush personal settings
334+
.cr/personal
285335

286336
# Python Tools for Visual Studio (PTVS)
287337
__pycache__/
@@ -304,4 +354,55 @@ __pycache__/
304354
*.xsd.cs
305355

306356
# OpenCover UI analysis results
307-
OpenCover/
357+
OpenCover/
358+
359+
# Azure Stream Analytics local run output
360+
ASALocalRun/
361+
362+
# MSBuild Binary and Structured Log
363+
*.binlog
364+
365+
# NVidia Nsight GPU debugger configuration file
366+
*.nvuser
367+
368+
# MFractors (Xamarin productivity tool) working folder
369+
.mfractor/
370+
371+
# Local History for Visual Studio
372+
.localhistory/
373+
374+
# Visual Studio History (VSHistory) files
375+
.vshistory/
376+
377+
# BeatPulse healthcheck temp database
378+
healthchecksdb
379+
380+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
381+
MigrationBackup/
382+
383+
# Ionide (cross platform F# VS Code tools) working folder
384+
.ionide/
385+
386+
# Fody - auto-generated XML schema
387+
FodyWeavers.xsd
388+
389+
# VS Code files for those working on multiple tools
390+
.vscode/*
391+
!.vscode/settings.json
392+
!.vscode/tasks.json
393+
!.vscode/launch.json
394+
!.vscode/extensions.json
395+
*.code-workspace
396+
397+
# Local History for Visual Studio Code
398+
.history/
399+
400+
# Windows Installer files from build outputs
401+
*.cab
402+
*.msi
403+
*.msix
404+
*.msm
405+
*.msp
406+
407+
# JetBrains Rider
408+
*.sln.iml

tools/builder/common

0 commit comments

Comments
 (0)