Skip to content

Commit b9fa803

Browse files
stulzqGogs
authored andcommitted
Initial commit
0 parents  commit b9fa803

File tree

3 files changed

+120
-0
lines changed

3 files changed

+120
-0
lines changed

.gitignore

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# ---> C Sharp
2+
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
3+
[Bb]in/
4+
[Oo]bj/
5+
6+
# mstest test results
7+
TestResults
8+
9+
## Ignore Visual Studio temporary files, build results, and
10+
## files generated by popular Visual Studio add-ons.
11+
12+
# User-specific files
13+
*.suo
14+
*.user
15+
*.sln.docstates
16+
17+
# Build results
18+
[Dd]ebug/
19+
[Rr]elease/
20+
x64/
21+
*_i.c
22+
*_p.c
23+
*.ilk
24+
*.meta
25+
*.obj
26+
*.pch
27+
*.pdb
28+
*.pgc
29+
*.pgd
30+
*.rsp
31+
*.sbr
32+
*.tlb
33+
*.tli
34+
*.tlh
35+
*.tmp
36+
*.log
37+
*.vspscc
38+
*.vssscc
39+
.builds
40+
41+
# Visual C++ cache files
42+
ipch/
43+
*.aps
44+
*.ncb
45+
*.opensdf
46+
*.sdf
47+
48+
# Visual Studio profiler
49+
*.psess
50+
*.vsp
51+
*.vspx
52+
53+
# Guidance Automation Toolkit
54+
*.gpState
55+
56+
# ReSharper is a .NET coding add-in
57+
_ReSharper*
58+
59+
# NCrunch
60+
*.ncrunch*
61+
.*crunch*.local.xml
62+
63+
# Installshield output folder
64+
[Ee]xpress
65+
66+
# DocProject is a documentation generator add-in
67+
DocProject/buildhelp/
68+
DocProject/Help/*.HxT
69+
DocProject/Help/*.HxC
70+
DocProject/Help/*.hhc
71+
DocProject/Help/*.hhk
72+
DocProject/Help/*.hhp
73+
DocProject/Help/Html2
74+
DocProject/Help/html
75+
76+
# Click-Once directory
77+
publish
78+
79+
# Publish Web Output
80+
*.Publish.xml
81+
82+
# NuGet Packages Directory
83+
packages
84+
85+
# Windows Azure Build Output
86+
csx
87+
*.build.csdef
88+
89+
# Windows Store app package directory
90+
AppPackages/
91+
92+
# Others
93+
[Bb]in
94+
[Oo]bj
95+
sql
96+
TestResults
97+
[Tt]est[Rr]esult*
98+
*.Cache
99+
ClientBin
100+
[Ss]tyle[Cc]op.*
101+
~$*
102+
*.dbmdl
103+
Generated_Code #added for RIA/Silverlight projects
104+
105+
# Backup & report files from converting an old project file to a newer
106+
# Visual Studio version. Backup files are not needed, because we have git ;-)
107+
_UpgradeReport_Files/
108+
Backup*/
109+
UpgradeLog*.XML
110+

LICENSE

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

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# CnBlogPublishTool
2+

0 commit comments

Comments
 (0)