Skip to content

Commit 33804dd

Browse files
author
Your Name
committed
version 1.0
1 parent 3fca476 commit 33804dd

File tree

9 files changed

+857
-0
lines changed

9 files changed

+857
-0
lines changed

.gitignore

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
/target/
2+
!.mvn/wrapper/maven-wrapper.jar
3+
4+
### STS ###
5+
.apt_generated
6+
.classpath
7+
.factorypath
8+
.project
9+
.settings
10+
.springBeans
11+
.sts4-cache
12+
13+
14+
/Register1024/bin
15+
/Register1024/obj
16+
### IntelliJ IDEA ###
17+
.idea
18+
*.iws
19+
*.iml
20+
*.ipr
21+
22+
### NetBeans ###
23+
/nbproject/private/
24+
/build/
25+
/nbbuild/
26+
/dist/
27+
/nbdist/
28+
/.nb-gradle/
29+
30+
31+
# Compiled class file
32+
*.class
33+
34+
# Log file
35+
*.log
36+
37+
# BlueJ files
38+
*.ctxt
39+
40+
# Mobile Tools for Java (J2ME)
41+
.mtj.tmp/
42+
43+
# Package Files #
44+
*.jar
45+
*.war
46+
*.ear
47+
*.zip
48+
*.tar.gz
49+
*.rar
50+
51+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
52+
hs_err_pid*
53+
54+
# See http://help.github.com/ignore-files/ for more about ignoring files.
55+
56+
# compiled output
57+
/dist
58+
/tmp
59+
/out-tsc
60+
/target
61+
62+
# dependencies
63+
/node_modules
64+
65+
# IDEs and editors
66+
/.idea
67+
.project
68+
.classpath
69+
.c9/
70+
*.launch
71+
.settings/
72+
*.sublime-workspace
73+
74+
# IDE - VSCode
75+
/.vscode
76+
/.vs
77+
.vscode/*
78+
!.vscode/settings.json
79+
!.vscode/tasks.json
80+
!.vscode/launch.json
81+
!.vscode/extensions.json
82+
83+
# misc
84+
/.sass-cache
85+
/connect.lock
86+
/coverage
87+
/libpeerconnection.log
88+
npm-debug.log
89+
testem.log
90+
/typings
91+
92+
# e2e
93+
/e2e/*.js
94+
/e2e/*.map
95+
96+
# System Files
97+
.DS_Store
98+
Thumbs.db
99+
100+
# Other Files
101+
*.iml
102+
*.zip
103+
*.rar

Register1024.sln

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
# SharpDevelop 5.1
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Register1024", "Register1024\Register1024.csproj", "{CB15DCA2-F930-4767-939A-D443A1443F10}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{CB15DCA2-F930-4767-939A-D443A1443F10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{CB15DCA2-F930-4767-939A-D443A1443F10}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{CB15DCA2-F930-4767-939A-D443A1443F10}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{CB15DCA2-F930-4767-939A-D443A1443F10}.Release|Any CPU.Build.0 = Release|Any CPU
17+
EndGlobalSection
18+
EndGlobal

Register1024/MainForm.Designer.cs

Lines changed: 178 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)