Skip to content

Commit 8579eae

Browse files
committed
Initial commit
0 parents  commit 8579eae

23 files changed

+2220
-0
lines changed

.gitattributes

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union

.gitignore

+167
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
#################
2+
## Project-Specific
3+
#################
4+
sekvyu/git.h
5+
6+
7+
#################
8+
## Qt
9+
#################
10+
.qmake.stash
11+
Makefile*
12+
*_plugin_import.cpp
13+
14+
15+
#################
16+
## Visual Studio
17+
#################
18+
19+
## Ignore Visual Studio temporary files, build results, and
20+
## files generated by popular Visual Studio add-ons.
21+
22+
# User-specific files
23+
*.suo
24+
*.user
25+
*.sln.docstates
26+
.vs
27+
28+
# Build results
29+
30+
[Dd]ebug/
31+
[Rr]elease/
32+
x64/
33+
build/
34+
[Bb]in/
35+
[Oo]bj/
36+
37+
# MSTest test Results
38+
[Tt]est[Rr]esult*/
39+
[Bb]uild[Ll]og.*
40+
41+
*_i.c
42+
*_p.c
43+
*.ilk
44+
*.meta
45+
*.obj
46+
*.pch
47+
*.pdb
48+
*.pgc
49+
*.pgd
50+
*.rsp
51+
*.sbr
52+
*.tlb
53+
*.tli
54+
*.tlh
55+
*.tmp
56+
*.tmp_proj
57+
*.log
58+
*.vspscc
59+
*.vssscc
60+
.builds
61+
*.pidb
62+
*.log
63+
*.scc
64+
65+
# Visual C++ cache files
66+
ipch/
67+
*.aps
68+
*.ncb
69+
*.opensdf
70+
*.sdf
71+
*.cachefile
72+
73+
# Visual Studio profiler
74+
*.psess
75+
*.vsp
76+
*.vspx
77+
78+
# Guidance Automation Toolkit
79+
*.gpState
80+
81+
# ReSharper is a .NET coding add-in
82+
_ReSharper*/
83+
*.[Rr]e[Ss]harper
84+
85+
# TeamCity is a build add-in
86+
_TeamCity*
87+
88+
# DotCover is a Code Coverage Tool
89+
*.dotCover
90+
91+
# NCrunch
92+
*.ncrunch*
93+
.*crunch*.local.xml
94+
95+
# Installshield output folder
96+
[Ee]xpress/
97+
98+
# DocProject is a documentation generator add-in
99+
DocProject/buildhelp/
100+
DocProject/Help/*.HxT
101+
DocProject/Help/*.HxC
102+
DocProject/Help/*.hhc
103+
DocProject/Help/*.hhk
104+
DocProject/Help/*.hhp
105+
DocProject/Help/Html2
106+
DocProject/Help/html
107+
108+
# Click-Once directory
109+
publish/
110+
111+
# Publish Web Output
112+
*.Publish.xml
113+
*.pubxml
114+
115+
# NuGet Packages Directory
116+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
117+
#packages/
118+
119+
# Windows Azure Build Output
120+
csx
121+
*.build.csdef
122+
123+
# Windows Store app package directory
124+
AppPackages/
125+
126+
# Others
127+
sql/
128+
*.Cache
129+
ClientBin/
130+
[Ss]tyle[Cc]op.*
131+
~$*
132+
*~
133+
*.dbmdl
134+
*.[Pp]ublish.xml
135+
*.pfx
136+
*.publishsettings
137+
138+
# RIA/Silverlight projects
139+
Generated_Code/
140+
141+
# Backup & report files from converting an old project file to a newer
142+
# Visual Studio version. Backup files are not needed, because we have git ;-)
143+
_UpgradeReport_Files/
144+
Backup*/
145+
UpgradeLog*.XML
146+
UpgradeLog*.htm
147+
148+
# SQL Server files
149+
App_Data/*.mdf
150+
App_Data/*.ldf
151+
152+
#############
153+
## Windows detritus
154+
#############
155+
156+
# Windows image file caches
157+
Thumbs.db
158+
ehthumbs.db
159+
160+
# Folder config file
161+
Desktop.ini
162+
163+
# Recycle Bin used on file shares
164+
$RECYCLE.BIN/
165+
166+
# Mac crap
167+
.DS_Store

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "Extract7z"]
2+
path = Extract7z
3+
url = https://github.com/mifanbang/Extract7z.git

Extract7z

Submodule Extract7z added at cde3519

0 commit comments

Comments
 (0)