Skip to content

Commit 0aa3d9e

Browse files
committed
Initial
0 parents  commit 0aa3d9e

25 files changed

+1690
-0
lines changed

.gitignore

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

.idea/.idea.UIExtenderLib/.idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)