Skip to content

Commit b96efb9

Browse files
committed
Update .gitignore and vendor.yml
1 parent 03860e8 commit b96efb9

File tree

2 files changed

+651
-1
lines changed

2 files changed

+651
-1
lines changed

.gitignore

+269-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,272 @@ bin/
22
obj/
33
/packages/
44
riderModule.iml
5-
/_ReSharper.Caches/
5+
/_ReSharper.Caches/
6+
## Ignore Visual Studio temporary files, build results, and
7+
## files generated by popular Visual Studio add-ons.
8+
9+
# User-specific files
10+
*.suo
11+
*.user
12+
*.userosscache
13+
*.sln.docstates
14+
15+
# User-specific files (MonoDevelop/Xamarin Studio)
16+
*.userprefs
17+
18+
# Build results
19+
[Dd]ebug/
20+
[Dd]ebugPublic/
21+
[Rr]elease/
22+
[Rr]eleases/
23+
x64/
24+
x86/
25+
bld/
26+
[Bb]in/
27+
[Oo]bj/
28+
[Ll]og/
29+
30+
# Visual Studio 2015 cache/options directory
31+
.vs/
32+
# Uncomment if you have tasks that create the project's static files in wwwroot
33+
#wwwroot/
34+
35+
# MSTest test Results
36+
[Tt]est[Rr]esult*/
37+
[Bb]uild[Ll]og.*
38+
39+
# NUNIT
40+
*.VisualState.xml
41+
TestResult.xml
42+
43+
# Build Results of an ATL Project
44+
[Dd]ebugPS/
45+
[Rr]eleasePS/
46+
dlldata.c
47+
48+
# DNX
49+
project.lock.json
50+
project.fragment.lock.json
51+
artifacts/
52+
53+
*_i.c
54+
*_p.c
55+
*_i.h
56+
*.ilk
57+
*.meta
58+
*.obj
59+
*.pch
60+
*.pdb
61+
*.pgc
62+
*.pgd
63+
*.rsp
64+
*.sbr
65+
*.tlb
66+
*.tli
67+
*.tlh
68+
*.tmp
69+
*.tmp_proj
70+
*.log
71+
*.vspscc
72+
*.vssscc
73+
.builds
74+
*.pidb
75+
*.svclog
76+
*.scc
77+
78+
# Chutzpah Test files
79+
_Chutzpah*
80+
81+
# Visual C++ cache files
82+
ipch/
83+
*.aps
84+
*.ncb
85+
*.opendb
86+
*.opensdf
87+
*.sdf
88+
*.cachefile
89+
*.VC.db
90+
*.VC.VC.opendb
91+
92+
# Visual Studio profiler
93+
*.psess
94+
*.vsp
95+
*.vspx
96+
*.sap
97+
98+
# TFS 2012 Local Workspace
99+
$tf/
100+
101+
# Guidance Automation Toolkit
102+
*.gpState
103+
104+
# ReSharper is a .NET coding add-in
105+
_ReSharper*/
106+
*.[Rr]e[Ss]harper
107+
*.DotSettings.user
108+
109+
# JustCode is a .NET coding add-in
110+
.JustCode
111+
112+
# TeamCity is a build add-in
113+
_TeamCity*
114+
115+
# DotCover is a Code Coverage Tool
116+
*.dotCover
117+
118+
# Visual Studio code coverage results
119+
*.coverage
120+
*.coveragexml
121+
122+
# NCrunch
123+
_NCrunch_*
124+
.*crunch*.local.xml
125+
nCrunchTemp_*
126+
127+
# MightyMoose
128+
*.mm.*
129+
AutoTest.Net/
130+
131+
# Web workbench (sass)
132+
.sass-cache/
133+
134+
# Installshield output folder
135+
[Ee]xpress/
136+
137+
# DocProject is a documentation generator add-in
138+
DocProject/buildhelp/
139+
DocProject/Help/*.HxT
140+
DocProject/Help/*.HxC
141+
DocProject/Help/*.hhc
142+
DocProject/Help/*.hhk
143+
DocProject/Help/*.hhp
144+
DocProject/Help/Html2
145+
DocProject/Help/html
146+
147+
# Click-Once directory
148+
publish/
149+
150+
# Publish Web Output
151+
*.[Pp]ublish.xml
152+
*.azurePubxml
153+
# TODO: Comment the next line if you want to checkin your web deploy settings
154+
# but database connection strings (with potential passwords) will be unencrypted
155+
*.pubxml
156+
*.publishproj
157+
158+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
159+
# checkin your Azure Web App publish settings, but sensitive information contained
160+
# in these scripts will be unencrypted
161+
PublishScripts/
162+
163+
# NuGet Packages
164+
*.nupkg
165+
# The packages folder can be ignored because of Package Restore
166+
**/packages/*
167+
# except build/, which is used as an MSBuild target.
168+
!**/packages/build/
169+
# Uncomment if necessary however generally it will be regenerated when needed
170+
#!**/packages/repositories.config
171+
# NuGet v3's project.json files produces more ignoreable files
172+
*.nuget.props
173+
*.nuget.targets
174+
175+
# Microsoft Azure Build Output
176+
csx/
177+
*.build.csdef
178+
179+
# Microsoft Azure Emulator
180+
ecf/
181+
rcf/
182+
183+
# Windows Store app package directories and files
184+
AppPackages/
185+
BundleArtifacts/
186+
Package.StoreAssociation.xml
187+
_pkginfo.txt
188+
189+
# Visual Studio cache files
190+
# files ending in .cache can be ignored
191+
*.[Cc]ache
192+
# but keep track of directories ending in .cache
193+
!*.[Cc]ache/
194+
195+
# Others
196+
ClientBin/
197+
~$*
198+
*~
199+
*.dbmdl
200+
*.dbproj.schemaview
201+
*.jfm
202+
*.pfx
203+
*.publishsettings
204+
node_modules/
205+
orleans.codegen.cs
206+
207+
# Since there are multiple workflows, uncomment next line to ignore bower_components
208+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
209+
#bower_components/
210+
211+
# RIA/Silverlight projects
212+
Generated_Code/
213+
214+
# Backup & report files from converting an old project file
215+
# to a newer Visual Studio version. Backup files are not needed,
216+
# because we have git ;-)
217+
_UpgradeReport_Files/
218+
Backup*/
219+
UpgradeLog*.XML
220+
UpgradeLog*.htm
221+
222+
# SQL Server files
223+
*.mdf
224+
*.ldf
225+
226+
# Business Intelligence projects
227+
*.rdl.data
228+
*.bim.layout
229+
*.bim_*.settings
230+
231+
# Microsoft Fakes
232+
FakesAssemblies/
233+
234+
# GhostDoc plugin setting file
235+
*.GhostDoc.xml
236+
237+
# Node.js Tools for Visual Studio
238+
.ntvs_analysis.dat
239+
240+
# Visual Studio 6 build log
241+
*.plg
242+
243+
# Visual Studio 6 workspace options file
244+
*.opt
245+
246+
# Visual Studio LightSwitch build output
247+
**/*.HTMLClient/GeneratedArtifacts
248+
**/*.DesktopClient/GeneratedArtifacts
249+
**/*.DesktopClient/ModelManifest.xml
250+
**/*.Server/GeneratedArtifacts
251+
**/*.Server/ModelManifest.xml
252+
_Pvt_Extensions
253+
254+
# Paket dependency manager
255+
.paket/paket.exe
256+
paket-files/
257+
258+
# FAKE - F# Make
259+
.fake/
260+
261+
# JetBrains Rider
262+
.idea/
263+
*.sln.iml
264+
265+
# CodeRush
266+
.cr/
267+
268+
# Python Tools for Visual Studio (PTVS)
269+
__pycache__/
270+
*.pyc
271+
272+
# Cake - Uncomment if you are using it
273+
# tools/

0 commit comments

Comments
 (0)