Skip to content

Commit 76ce06a

Browse files
committed
Initial commit.
0 parents  commit 76ce06a

21 files changed

+907
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)