Skip to content

Commit 30eb831

Browse files
committed
Initial commit
0 parents  commit 30eb831

File tree

2 files changed

+97
-0
lines changed

2 files changed

+97
-0
lines changed

.gitignore

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Visual Studio 2015/2017 cache/options director
2+
.vs/
3+
4+
# Build output
5+
Debug/
6+
DebugLocal/
7+
Release/
8+
bin/
9+
obj/
10+
11+
# dependencies
12+
packages/
13+
node_packages/
14+
15+
# Sonar temp folders
16+
.sonarqube/
17+
18+
# Conflict resolution files
19+
*.orig
20+
21+
# Files built by Visual Studio
22+
*.~*
23+
*_i.c
24+
*_p.c
25+
*_h.h
26+
*.ilk
27+
*.meta
28+
*.obj
29+
*.iobj
30+
*.pch
31+
*.pdb
32+
*.ipdb
33+
*.pgc
34+
*.pgd
35+
*.rsp
36+
*.sbr
37+
*.tlb
38+
*.tli
39+
*.tlh
40+
*.tmp
41+
*.tmp_proj
42+
*_wpftmp.csproj
43+
*.log
44+
*.vspscc
45+
*.vssscc
46+
.builds
47+
*.pidb
48+
*.svclog
49+
*.scc
50+
*.jfm
51+
*.dbmdl
52+
53+
# Visual Studio profiler
54+
*.psess
55+
*.vsp
56+
*.vspx
57+
*.sap
58+
59+
# Visual Studio Trace Files
60+
*.e2e
61+
62+
# TFS 2012 Local Workspace
63+
$tf/
64+
65+
# User-specific files
66+
*.rsuser
67+
*.suo
68+
*.user
69+
*.userosscache
70+
*.sln.docstates
71+
72+
# User-specific files (MonoDevelop/Xamarin Studio)
73+
*.userprefs
74+
75+
# tests
76+
TestResults/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019- Ivan Starostin
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)