Skip to content

Commit 44d8546

Browse files
committed
Release
Frist version.
0 parents  commit 44d8546

14 files changed

+626
-0
lines changed

.gitattributes

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

+212
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,212 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
tmp/
9+
*.tmp
10+
*.bak
11+
*.swp
12+
*~.nib
13+
local.properties
14+
.classpath
15+
.settings/
16+
.loadpath
17+
18+
# External tool builders
19+
.externalToolBuilders/
20+
21+
# Locally stored "Eclipse launch configurations"
22+
*.launch
23+
24+
# CDT-specific
25+
.cproject
26+
27+
# PDT-specific
28+
.buildpath
29+
30+
31+
#################
32+
## Visual Studio
33+
#################
34+
35+
## Ignore Visual Studio temporary files, build results, and
36+
## files generated by popular Visual Studio add-ons.
37+
38+
# User-specific files
39+
*.suo
40+
*.user
41+
*.sln.docstates
42+
43+
# Build results
44+
45+
[Dd]ebug/
46+
x64/
47+
build/
48+
[Oo]bj/
49+
50+
# MSTest test Results
51+
[Tt]est[Rr]esult*/
52+
[Bb]uild[Ll]og.*
53+
54+
*_i.c
55+
*_p.c
56+
*.ilk
57+
*.meta
58+
*.obj
59+
*.pch
60+
*.pdb
61+
*.pgc
62+
*.pgd
63+
*.rsp
64+
*.sbr
65+
*.tlb
66+
*.tli
67+
*.tlh
68+
*.tmp
69+
*.tmp_proj
70+
*.log
71+
*.vspscc
72+
*.vssscc
73+
.builds
74+
*.pidb
75+
*.log
76+
*.scc
77+
78+
# Visual C++ cache files
79+
ipch/
80+
*.aps
81+
*.ncb
82+
*.opensdf
83+
*.sdf
84+
*.cachefile
85+
86+
# Visual Studio profiler
87+
*.psess
88+
*.vsp
89+
*.vspx
90+
91+
# Guidance Automation Toolkit
92+
*.gpState
93+
94+
# ReSharper is a .NET coding add-in
95+
_ReSharper*/
96+
*.[Rr]e[Ss]harper
97+
98+
# TeamCity is a build add-in
99+
_TeamCity*
100+
101+
# DotCover is a Code Coverage Tool
102+
*.dotCover
103+
104+
# NCrunch
105+
*.ncrunch*
106+
.*crunch*.local.xml
107+
108+
# Installshield output folder
109+
[Ee]xpress/
110+
111+
# DocProject is a documentation generator add-in
112+
DocProject/buildhelp/
113+
DocProject/Help/*.HxT
114+
DocProject/Help/*.HxC
115+
DocProject/Help/*.hhc
116+
DocProject/Help/*.hhk
117+
DocProject/Help/*.hhp
118+
DocProject/Help/Html2
119+
DocProject/Help/html
120+
121+
# Click-Once directory
122+
publish/
123+
124+
# Publish Web Output
125+
*.Publish.xml
126+
*.pubxml
127+
128+
# NuGet Packages Directory
129+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
130+
#packages/
131+
132+
# Windows Azure Build Output
133+
csx
134+
*.build.csdef
135+
136+
# Windows Store app package directory
137+
AppPackages/
138+
139+
# Others
140+
sql/
141+
*.Cache
142+
ClientBin/
143+
[Ss]tyle[Cc]op.*
144+
~$*
145+
*~
146+
*.dbmdl
147+
*.[Pp]ublish.xml
148+
*.pfx
149+
*.publishsettings
150+
151+
# RIA/Silverlight projects
152+
Generated_Code/
153+
154+
# Backup & report files from converting an old project file to a newer
155+
# Visual Studio version. Backup files are not needed, because we have git ;-)
156+
_UpgradeReport_Files/
157+
Backup*/
158+
UpgradeLog*.XML
159+
UpgradeLog*.htm
160+
161+
# SQL Server files
162+
App_Data/*.mdf
163+
App_Data/*.ldf
164+
165+
#############
166+
## Windows detritus
167+
#############
168+
169+
# Windows image file caches
170+
Thumbs.db
171+
ehthumbs.db
172+
173+
# Folder config file
174+
Desktop.ini
175+
176+
# Recycle Bin used on file shares
177+
$RECYCLE.BIN/
178+
179+
# Mac crap
180+
.DS_Store
181+
182+
183+
#############
184+
## Python
185+
#############
186+
187+
*.py[co]
188+
189+
# Packages
190+
*.egg
191+
*.egg-info
192+
dist/
193+
build/
194+
eggs/
195+
parts/
196+
var/
197+
sdist/
198+
develop-eggs/
199+
.installed.cfg
200+
201+
# Installer logs
202+
pip-log.txt
203+
204+
# Unit test / coverage reports
205+
.coverage
206+
.tox
207+
208+
#Translations
209+
*.mo
210+
211+
#Mr Developer
212+
.mr.developer.cfg

README

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
reference: http://msdn.microsoft.com/en-us/library/system.security.cryptography.md5(v=vs.110).aspx

Text2MD5.sln

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Express 2012 for Windows Desktop
4+
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Text2MD5", "Text2MD5\Text2MD5.vbproj", "{C1BDE4AA-7098-4B53-9C54-53A1E2193747}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{C1BDE4AA-7098-4B53-9C54-53A1E2193747}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{C1BDE4AA-7098-4B53-9C54-53A1E2193747}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{C1BDE4AA-7098-4B53-9C54-53A1E2193747}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{C1BDE4AA-7098-4B53-9C54-53A1E2193747}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

Text2MD5/App.config

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0"?>
2+
<configuration>
3+
<startup>
4+
5+
<supportedRuntime version="v2.0.50727"/></startup>
6+
</configuration>

Text2MD5/Form1.Designer.vb

+62
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)