Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit 6c542cc

Browse files
committed
Initial Commit
0 parents  commit 6c542cc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+6417
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

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

0 commit comments

Comments
 (0)