Skip to content

Commit ebcae93

Browse files
committed
Initial commit
0 parents  commit ebcae93

38 files changed

+11252
-0
lines changed

.gitignore

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

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022-24 Subhajit Sahu
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)