Skip to content

Commit 404027e

Browse files
committed
Initial Commit
0 parents  commit 404027e

21 files changed

+37905
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)