Skip to content

Commit a277507

Browse files
Merge pull request #66 from rstm-sf/infra/update_gitignore
Update .gitignore
2 parents 99a2bd1 + 32f5263 commit a277507

2 files changed

Lines changed: 157 additions & 52 deletions

File tree

.gitignore

Lines changed: 157 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,165 @@
1-
*.bak
2-
*.csproj.user
3-
*.ReSharper.user
41
*.sublime-*
5-
*.suo
6-
*.user
7-
*.vcxproj.user
82
*.vshost.*
9-
_ReSharper.*
10-
_UpgradeReport_Files/
11-
bin/
12-
Bin/
13-
build/
143
log.txt
154
NLogMerged.api.xml
16-
obj/
175
packages/
186
StyleCop.Cache
19-
TestResults/
207
test-results/
8+
9+
# User-specific files
10+
*.rsuser
11+
*.suo
12+
*.user
13+
*.userosscache
14+
*.sln.docstates
15+
16+
# User-specific files (MonoDevelop/Xamarin Studio)
17+
*.userprefs
18+
19+
# User-specific files (IntelliJ IDEA)
20+
.idea/
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+
[Ll]ogs/
34+
[Bb]uild/
35+
36+
# Visual Studio 2015/2017 cache/options directory
37+
.vs/
38+
39+
# Visual Studio 2017 auto generated files
40+
Generated\ Files/
41+
42+
# MSTest test Results
43+
[Tt]est[Rr]esult*/
44+
[Bb]uild[Ll]og.*
45+
46+
# NUnit
47+
*.VisualState.xml
48+
TestResult.xml
49+
nunit-*.xml
50+
51+
# StyleCop
52+
StyleCopReport.xml
53+
54+
# Files built by Visual Studio
55+
*_i.c
56+
*_p.c
57+
*_h.h
58+
*.ilk
59+
*.meta
60+
*.obj
61+
*.iobj
62+
*.pch
63+
*.pdb
64+
*.ipdb
65+
*.pgc
66+
*.pgd
67+
*.rsp
68+
*.sbr
69+
*.tlb
70+
*.tli
71+
*.tlh
72+
*.tmp
73+
*.tmp_proj
74+
*_wpftmp.csproj
75+
*.log
76+
*.vspscc
77+
*.vssscc
78+
.builds
79+
*.pidb
80+
*.svclog
81+
*.scc
82+
83+
# Visual Studio profiler
84+
*.psess
85+
*.vsp
86+
*.vspx
87+
*.sap
88+
89+
# Visual Studio Trace Files
90+
*.e2e
91+
92+
# ReSharper is a .NET coding add-in
93+
_ReSharper*/
94+
*.[Rr]e[Ss]harper
95+
*.DotSettings.user
96+
97+
# JustCode is a .NET coding add-in
98+
.JustCode
99+
100+
# DotCover is a Code Coverage Tool
101+
*.dotCover
102+
103+
# AxoCover is a Code Coverage Tool
104+
.axoCover/*
105+
!.axoCover/settings.json
106+
107+
# Visual Studio code coverage results
108+
*.coverage
109+
*.coveragexml
110+
111+
# NuGet Packages
112+
*.nupkg
113+
# NuGet Symbol Packages
114+
*.snupkg
115+
# The packages folder can be ignored because of Package Restore
116+
**/[Pp]ackages/*
117+
# except build/, which is used as an MSBuild target.
118+
!**/[Pp]ackages/build/
119+
# Uncomment if necessary however generally it will be regenerated when needed
120+
#!**/[Pp]ackages/repositories.config
121+
# NuGet v3's project.json files produces more ignorable files
122+
*.nuget.props
123+
*.nuget.targets
124+
125+
# Visual Studio cache files
126+
# files ending in .cache can be ignored
127+
*.[Cc]ache
128+
# but keep track of directories ending in .cache
129+
!?*.[Cc]ache/
130+
131+
# Others
132+
ClientBin/
133+
~$*
134+
*~
135+
*.dbmdl
136+
*.dbproj.schemaview
137+
*.jfm
138+
*.pfx
139+
*.publishsettings
140+
orleans.codegen.cs
141+
142+
# Backup & report files from converting an old project file
143+
# to a newer Visual Studio version. Backup files are not needed,
144+
# because we have git ;-)
145+
_UpgradeReport_Files/
146+
Backup*/
21147
UpgradeLog*.XML
22-
/.vs
148+
UpgradeLog*.htm
149+
ServiceFabricBackup/
150+
*.rptproj.bak
151+
152+
# MSBuild Binary and Structured Log
153+
*.binlog
154+
155+
# MFractors (Xamarin productivity tool) working folder
156+
.mfractor/
157+
158+
# Local History for Visual Studio
159+
.localhistory/
160+
161+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
162+
MigrationBackup/
163+
164+
# Ionide (cross platform F# VS Code tools) working folder
165+
.ionide/

0 commit comments

Comments
 (0)