Skip to content

Commit fb426f5

Browse files
authored
Merge branch 'master' into add-ly-bui
2 parents 4dfd3b0 + 10e0dc8 commit fb426f5

File tree

4 files changed

+435
-12758
lines changed

4 files changed

+435
-12758
lines changed

.gitignore

Lines changed: 386 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,386 @@
1-
.DS_Store
1+
.DS_Store;
2+
.idea/
3+
.vs
4+
# User-specific files
5+
*.rsuser
6+
*.suo
7+
*.user
8+
*.userosscache
9+
*.sln.docstates
10+
11+
# User-specific files (MonoDevelop/Xamarin Studio)
12+
*.userprefs
13+
14+
# Mono auto generated files
15+
mono_crash.*
16+
17+
# Build results
18+
[Dd]ebug/
19+
[Dd]ebugPublic/
20+
[Rr]elease/
21+
[Rr]eleases/
22+
x64/
23+
x86/
24+
[Ww][Ii][Nn]32/
25+
[Aa][Rr][Mm]/
26+
[Aa][Rr][Mm]64/
27+
bld/
28+
[Bb]in/
29+
[Oo]bj/
30+
[Ll]og/
31+
[Ll]ogs/
32+
33+
# Visual Studio 2015/2017 cache/options directory
34+
.vs/
35+
# Uncomment if you have tasks that create the project's static files in wwwroot
36+
#wwwroot/
37+
38+
# Visual Studio 2017 auto generated files
39+
Generated\ Files/
40+
41+
# MSTest test Results
42+
[Tt]est[Rr]esult*/
43+
[Bb]uild[Ll]og.*
44+
45+
# NUnit
46+
*.VisualState.xml
47+
TestResult.xml
48+
nunit-*.xml
49+
50+
# Build Results of an ATL Project
51+
[Dd]ebugPS/
52+
[Rr]eleasePS/
53+
dlldata.c
54+
55+
# Benchmark Results
56+
BenchmarkDotNet.Artifacts/
57+
58+
# .NET Core
59+
project.lock.json
60+
project.fragment.lock.json
61+
artifacts/
62+
63+
# ASP.NET Scaffolding
64+
ScaffoldingReadMe.txt
65+
66+
# StyleCop
67+
StyleCopReport.xml
68+
69+
# Files built by Visual Studio
70+
*_i.c
71+
*_p.c
72+
*_h.h
73+
*.ilk
74+
*.meta
75+
*.obj
76+
*.iobj
77+
*.pch
78+
*.pdb
79+
*.ipdb
80+
*.pgc
81+
*.pgd
82+
*.rsp
83+
*.sbr
84+
*.tlb
85+
*.tli
86+
*.tlh
87+
*.tmp
88+
*.tmp_proj
89+
*_wpftmp.csproj
90+
*.log
91+
*.tlog
92+
*.vspscc
93+
*.vssscc
94+
.builds
95+
*.pidb
96+
*.svclog
97+
*.scc
98+
99+
# Chutzpah Test files
100+
_Chutzpah*
101+
102+
# Visual C++ cache files
103+
ipch/
104+
*.aps
105+
*.ncb
106+
*.opendb
107+
*.opensdf
108+
*.sdf
109+
*.cachefile
110+
*.VC.db
111+
*.VC.VC.opendb
112+
113+
# Visual Studio profiler
114+
*.psess
115+
*.vsp
116+
*.vspx
117+
*.sap
118+
119+
# Visual Studio Trace Files
120+
*.e2e
121+
122+
# TFS 2012 Local Workspace
123+
$tf/
124+
125+
# Guidance Automation Toolkit
126+
*.gpState
127+
128+
# ReSharper is a .NET coding add-in
129+
_ReSharper*/
130+
*.[Rr]e[Ss]harper
131+
*.DotSettings.user
132+
133+
# TeamCity is a build add-in
134+
_TeamCity*
135+
136+
# DotCover is a Code Coverage Tool
137+
*.dotCover
138+
139+
# AxoCover is a Code Coverage Tool
140+
.axoCover/*
141+
!.axoCover/settings.json
142+
143+
# Coverlet is a free, cross platform Code Coverage Tool
144+
coverage*.json
145+
coverage*.xml
146+
coverage*.info
147+
148+
# Visual Studio code coverage results
149+
*.coverage
150+
*.coveragexml
151+
152+
# NCrunch
153+
_NCrunch_*
154+
.*crunch*.local.xml
155+
nCrunchTemp_*
156+
157+
# MightyMoose
158+
*.mm.*
159+
AutoTest.Net/
160+
161+
# Web workbench (sass)
162+
.sass-cache/
163+
164+
# Installshield output folder
165+
[Ee]xpress/
166+
167+
# DocProject is a documentation generator add-in
168+
DocProject/buildhelp/
169+
DocProject/Help/*.HxT
170+
DocProject/Help/*.HxC
171+
DocProject/Help/*.hhc
172+
DocProject/Help/*.hhk
173+
DocProject/Help/*.hhp
174+
DocProject/Help/Html2
175+
DocProject/Help/html
176+
177+
# Click-Once directory
178+
publish/
179+
180+
# Publish Web Output
181+
*.[Pp]ublish.xml
182+
*.azurePubxml
183+
# Note: Comment the next line if you want to checkin your web deploy settings,
184+
# but database connection strings (with potential passwords) will be unencrypted
185+
*.pubxml
186+
*.publishproj
187+
188+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
189+
# checkin your Azure Web App publish settings, but sensitive information contained
190+
# in these scripts will be unencrypted
191+
PublishScripts/
192+
193+
# NuGet Packages
194+
*.nupkg
195+
# NuGet Symbol Packages
196+
*.snupkg
197+
# The packages folder can be ignored because of Package Restore
198+
**/[Pp]ackages/*
199+
# except build/, which is used as an MSBuild target.
200+
!**/[Pp]ackages/build/
201+
# Uncomment if necessary however generally it will be regenerated when needed
202+
#!**/[Pp]ackages/repositories.config
203+
# NuGet v3's project.json files produces more ignorable files
204+
*.nuget.props
205+
*.nuget.targets
206+
207+
# Nuget personal access tokens and Credentials
208+
nuget.config
209+
210+
# Microsoft Azure Build Output
211+
csx/
212+
*.build.csdef
213+
214+
# Microsoft Azure Emulator
215+
ecf/
216+
rcf/
217+
218+
# Windows Store app package directories and files
219+
AppPackages/
220+
BundleArtifacts/
221+
Package.StoreAssociation.xml
222+
_pkginfo.txt
223+
*.appx
224+
*.appxbundle
225+
*.appxupload
226+
227+
# Visual Studio cache files
228+
# files ending in .cache can be ignored
229+
*.[Cc]ache
230+
# but keep track of directories ending in .cache
231+
!?*.[Cc]ache/
232+
233+
# Others
234+
ClientBin/
235+
~$*
236+
*~
237+
*.dbmdl
238+
*.dbproj.schemaview
239+
*.jfm
240+
*.pfx
241+
*.publishsettings
242+
orleans.codegen.cs
243+
244+
# Including strong name files can present a security risk
245+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
246+
#*.snk
247+
248+
# Since there are multiple workflows, uncomment next line to ignore bower_components
249+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
250+
#bower_components/
251+
252+
# RIA/Silverlight projects
253+
Generated_Code/
254+
255+
# Backup & report files from converting an old project file
256+
# to a newer Visual Studio version. Backup files are not needed,
257+
# because we have git ;-)
258+
_UpgradeReport_Files/
259+
Backup*/
260+
UpgradeLog*.XML
261+
UpgradeLog*.htm
262+
ServiceFabricBackup/
263+
*.rptproj.bak
264+
265+
# SQL Server files
266+
*.mdf
267+
*.ldf
268+
*.ndf
269+
270+
# Business Intelligence projects
271+
*.rdl.data
272+
*.bim.layout
273+
*.bim_*.settings
274+
*.rptproj.rsuser
275+
*- [Bb]ackup.rdl
276+
*- [Bb]ackup ([0-9]).rdl
277+
*- [Bb]ackup ([0-9][0-9]).rdl
278+
279+
# Microsoft Fakes
280+
FakesAssemblies/
281+
282+
# GhostDoc plugin setting file
283+
*.GhostDoc.xml
284+
285+
# Node.js Tools for Visual Studio
286+
.ntvs_analysis.dat
287+
node_modules/
288+
289+
# Visual Studio 6 build log
290+
*.plg
291+
292+
# Visual Studio 6 workspace options file
293+
*.opt
294+
295+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
296+
*.vbw
297+
298+
# Visual Studio LightSwitch build output
299+
**/*.HTMLClient/GeneratedArtifacts
300+
**/*.DesktopClient/GeneratedArtifacts
301+
**/*.DesktopClient/ModelManifest.xml
302+
**/*.Server/GeneratedArtifacts
303+
**/*.Server/ModelManifest.xml
304+
_Pvt_Extensions
305+
306+
# Paket dependency manager
307+
.paket/paket.exe
308+
paket-files/
309+
310+
# FAKE - F# Make
311+
.fake/
312+
313+
# CodeRush personal settings
314+
.cr/personal
315+
316+
# Python Tools for Visual Studio (PTVS)
317+
__pycache__/
318+
*.pyc
319+
320+
# Cake - Uncomment if you are using it
321+
# tools/**
322+
# !tools/packages.config
323+
324+
# Tabs Studio
325+
*.tss
326+
327+
# Telerik's JustMock configuration file
328+
*.jmconfig
329+
330+
# BizTalk build output
331+
*.btp.cs
332+
*.btm.cs
333+
*.odx.cs
334+
*.xsd.cs
335+
336+
# OpenCover UI analysis results
337+
OpenCover/
338+
339+
# Azure Stream Analytics local run output
340+
ASALocalRun/
341+
342+
# MSBuild Binary and Structured Log
343+
*.binlog
344+
345+
# NVidia Nsight GPU debugger configuration file
346+
*.nvuser
347+
348+
# MFractors (Xamarin productivity tool) working folder
349+
.mfractor/
350+
351+
# Local History for Visual Studio
352+
.localhistory/
353+
354+
# BeatPulse healthcheck temp database
355+
healthchecksdb
356+
357+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
358+
MigrationBackup/
359+
360+
# Ionide (cross platform F# VS Code tools) working folder
361+
.ionide/
362+
363+
# Fody - auto-generated XML schema
364+
FodyWeavers.xsd
365+
366+
# VS Code files for those working on multiple tools
367+
.vscode/*
368+
!.vscode/settings.json
369+
!.vscode/tasks.json
370+
!.vscode/launch.json
371+
!.vscode/extensions.json
372+
*.code-workspace
373+
374+
# Local History for Visual Studio Code
375+
.history/
376+
377+
# Windows Installer files from build outputs
378+
*.cab
379+
*.msi
380+
*.msix
381+
*.msm
382+
*.msp
383+
384+
# JetBrains Rider
385+
.idea/
386+
*.sln.iml

.vs/slnx.sqlite

-116 KB
Binary file not shown.

0 commit comments

Comments
 (0)