Skip to content

Commit eeadd4c

Browse files
committed
More files & dirs to ignore
1 parent dabae36 commit eeadd4c

File tree

1 file changed

+114
-22
lines changed

1 file changed

+114
-22
lines changed

.gitignore

Lines changed: 114 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,116 @@
1-
bin/
2-
Bin/
3-
*.dll
4-
*.pdb
5-
*.user
6-
*.cache
1+
### VisualStudioCode ###
2+
.vscode/*
3+
!.vscode/settings.json
4+
!.vscode/tasks.json
5+
!.vscode/launch.json
6+
!.vscode/extensions.json
7+
.history
8+
9+
### VisualStudio ###
10+
## Ignore Visual Studio temporary files, build results, and
11+
## files generated by popular Visual Studio add-ons.
12+
13+
# User-specific files
714
*.suo
8-
*.docstates
9-
obj/
10-
_ReSharper.*
11-
*.orig
12-
dist/**
13-
pkg/*/**
15+
*.user
16+
*.userosscache
17+
*.sln.docstates
18+
19+
# User-specific files (MonoDevelop/Xamarin Studio)
20+
*.userprefs
21+
22+
# Build results
23+
[Dd]ebug/
24+
[Dd]ebugPublic/
25+
[Rr]elease/
26+
[Rr]eleases/
27+
x64/
28+
x86/
29+
bld/
30+
[Bb]in/
31+
[Oo]bj/
32+
[Ll]og/
33+
34+
# Visual Studio 2015 cache/options directory
35+
.vs/
36+
37+
# MSTest test Results
38+
[Tt]est[Rr]esult*/
39+
[Bb]uild[Ll]og.*
40+
41+
# NUNIT
42+
*.VisualState.xml
43+
TestResult.xml
44+
45+
# .NET Core
46+
project.lock.json
47+
project.fragment.lock.json
48+
artifacts/
49+
**/Properties/launchSettings.json
50+
51+
# Visual Studio profiler
52+
*.psess
53+
*.vsp
54+
*.vspx
55+
*.sap
56+
57+
# TFS 2012 Local Workspace
58+
$tf/
59+
60+
# ReSharper is a .NET coding add-in
61+
_ReSharper*/
62+
*.[Rr]e[Ss]harper
63+
*.DotSettings.user
64+
65+
# TeamCity is a build add-in
66+
_TeamCity*
67+
68+
# DotCover is a Code Coverage Tool
69+
*.dotCover
70+
71+
# Visual Studio code coverage results
72+
*.coverage
73+
*.coveragexml
74+
75+
# NuGet Packages
1476
*.nupkg
15-
PrecompiledWeb
16-
elmah.xml
17-
Elmah.xml
18-
samples/Demo/Mails/*
19-
samples/Demo/App_Data/*
20-
samples/Demo/Web.config
21-
packages/**
22-
.nuget/NuGet.exe
23-
.nuget/nuget.exe
24-
src/**/xmldoc/**
77+
# The packages folder can be ignored because of Package Restore
78+
**/packages/*
79+
# except build/, which is used as an MSBuild target.
80+
!**/packages/build/
81+
# NuGet v3's project.json files produces more ignorable files
82+
*.nuget.props
83+
*.nuget.targets
84+
85+
# Visual Studio cache files
86+
# files ending in .cache can be ignored
87+
*.[Cc]ache
88+
# but keep track of directories ending in .cache
89+
!*.[Cc]ache/
90+
91+
# Others
92+
ClientBin/
93+
~$*
94+
*~
95+
*.dbmdl
96+
*.dbproj.schemaview
97+
*.jfm
98+
*.pfx
99+
*.publishsettings
100+
101+
# Backup & report files from converting an old project file
102+
# to a newer Visual Studio version. Backup files are not needed,
103+
# because we have git ;-)
104+
_UpgradeReport_Files/
105+
Backup*/
106+
UpgradeLog*.XML
107+
UpgradeLog*.htm
108+
109+
# SQL Server files
110+
*.mdf
111+
*.ldf
112+
*.ndf
113+
114+
# JetBrains Rider
115+
.idea/
116+
*.sln.iml

0 commit comments

Comments
 (0)