1- # SiteServer CMS
1+ # SSCMS
22
3- SiteServer CMS 基于 .NET Core,能够以最低的成本、最少的人力投入在最短的时间内架设一个功能齐全、性能优异、规模庞大并易于维护的网站平台。
3+ SSCMS 基于 .NET Core,能够以最低的成本、最少的人力投入在最短的时间内架设一个功能齐全、性能优异、规模庞大并易于维护的网站平台。
44
5- ![ SiteServer CMS ] ( https://www.siteserver.cn /assets/images/github-banner.png )
5+ ![ SSCMS ] ( https://sscms.com /assets/images/github-banner.png )
66
77## 版本
88
99项目发布的正式版本存放在 ` master ` 分支,最新版本存放在 ` staging ` 分支
1010
11- | 版本 | 编译状态 | 版本号 | 发布日期 |
12- | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
13- | 正式版 | [ ![ Build status] ( https://ci.appveyor .com/api/projects/ status/plx37i94y9gsqkru/branch/master?svg=true )] ( https://ci.appveyor .com/project/starlying/ cms/branch/ master ) | ![ Nuget version] ( https://img.shields.io/nuget/v/SS.CMS.svg ) | ![ master last commit] ( https://img.shields.io/github/last-commit/siteserver/cms/master.svg ) |
14- | 开发版 | [ ![ Build Status] ( https://sscms.visualstudio.com/cms/_apis/build/status/siteserver.cms?branchName=staging )] ( https://sscms.visualstudio.com/cms/_build/latest?definitionId=1&branchName=master ) | ![ Nuget version] ( https://img.shields.io/nuget/vpre/SS.CMS.svg ) | ![ staging last commit] ( https://img.shields.io/github/last-commit/siteserver/cms/staging.svg ) |
11+ | 版本 | 编译状态 | 版本号 | 发布日期 |
12+ | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
13+ | 正式版 | [ ![ Build status] ( https://sscms.visualstudio .com/cms/_apis/build/ status/siteserver.cms?branchName=master )] ( https://sscms.visualstudio .com/cms/_build/latest?definitionId=1&branchName= master ) | ![ Nuget version] ( https://img.shields.io/nuget/v/SS.CMS.svg ) | ![ master last commit] ( https://img.shields.io/github/last-commit/siteserver/cms/master.svg ) |
14+ | 开发版 | [ ![ Build Status] ( https://sscms.visualstudio.com/cms/_apis/build/status/siteserver.cms?branchName=staging )] ( https://sscms.visualstudio.com/cms/_build/latest?definitionId=1&branchName=staging ) | ![ Nuget version] ( https://img.shields.io/nuget/vpre/SS.CMS.svg ) | ![ staging last commit] ( https://img.shields.io/github/last-commit/siteserver/cms/staging.svg ) |
1515
1616## 迭代计划
1717
@@ -47,19 +47,19 @@ SiteServer CMS 基于 .NET Core,能够以最低的成本、最少的人力投
4747
4848## 开发文档
4949
50- [ 《STL 语言参考手册》] ( https://www.siteserver.cn /docs/stl/ )
50+ [ 《STL 语言参考手册》] ( https://sscms.com /docs/stl/ )
5151
52- [ 《插件开发参考手册》] ( https://www.siteserver.cn /docs/plugins/ )
52+ [ 《插件开发参考手册》] ( https://sscms.com /docs/plugins/ )
5353
54- [ 《CLI 命令行参考手册》] ( https://www.siteserver.cn /docs/cli/ )
54+ [ 《CLI 命令行参考手册》] ( https://sscms.com /docs/cli/ )
5555
56- [ 《REST API 参考手册》] ( https://www.siteserver.cn /docs/api/ )
56+ [ 《REST API 参考手册》] ( https://sscms.com /docs/api/ )
5757
58- [ 《数据结构参考手册》] ( https://www.siteserver.cn /docs/model/ )
58+ [ 《数据结构参考手册》] ( https://sscms.com /docs/model/ )
5959
60- 系统使用文档请点击 [ SiteServer CMS 文档中心] ( https://www.siteserver.cn /docs/ )
60+ 系统使用文档请点击 [ SSCMS 文档中心] ( https://sscms.com /docs/ )
6161
62- ## SiteServer CMS 源码结构
62+ ## SSCMS 源码结构
6363
6464``` code
6565│ sscms.sln Visual Studio 项目文件
@@ -73,22 +73,26 @@ SiteServer CMS 基于 .NET Core,能够以最低的成本、最少的人力投
7373
7474## 发布跨平台版本
7575
76- Window(64位):
76+ Window(64 位):
77+
7778```
7879dotnet publish ./src/SSCMS/SSCMS.csproj -r win-x64 --configuration Release -o dist/sscms-win-x64 /p:PublishSingleFile=true
7980```
8081
81- Window(32位):
82+ Window(32 位):
83+
8284```
8385dotnet publish ./src/SSCMS/SSCMS.csproj -r win-x86 --configuration Release -o dist/sscms-win-x86 /p:PublishSingleFile=true
8486```
8587
8688Linux:
89+
8790```
8891dotnet publish ./src/SSCMS/SSCMS.csproj -r linux-x64 --configuration Release -o dist/sscms-linux-x64 /p:PublishSingleFile=true
8992```
9093
9194MacOS:
95+
9296```
9397dotnet publish ./src/SSCMS/SSCMS.csproj -r osx-x64 --configuration Release -o dist/sscms-osx-x64 /p:PublishSingleFile=true
9498```
@@ -97,7 +101,7 @@ dotnet publish ./src/SSCMS/SSCMS.csproj -r osx-x64 --configuration Release -o di
97101
98102代码贡献有很多形式,从提交问题,撰写文档,到提交代码,我们欢迎任何形式的贡献!
99103
100- 项目编译需要使用 Visual Studio 2017 ,你可以从这里下载 [ Visual Studio Community 2017 ] ( https://www.visualstudio.com/downloads/ )
104+ 项目编译需要使用 Visual Studio 2019 ,你可以从这里下载 [ Visual Studio Community 2019 ] ( https://www.visualstudio.com/downloads/ )
101105
102106- 1、Fork
103107- 2、创建您的特性分支 (` git checkout -b my-new-feature ` )
@@ -107,18 +111,18 @@ dotnet publish ./src/SSCMS/SSCMS.csproj -r osx-x64 --configuration Release -o di
107111
108112## 系统更新
109113
110- SiteServer CMS 产品将每隔两月发布新的正式版本,我们将在每次迭代中对核心功能、文档支持、功能插件以及网站模板四个方面进行持续改进。
114+ SSCMS 产品将每隔两月发布新的正式版本,我们将在每次迭代中对核心功能、文档支持、功能插件以及网站模板四个方面进行持续改进。
111115
112116## 问题与建议
113117
114118如果发现任何 BUG 以及对产品使用的问题与建议,请提交至 [ Github Issues] ( https://github.com/siteserver/cms/issues ) 。
115119
116120## 关注最新动态
117121
118- [ ![ qrcode] ( https://www.siteserver.cn /assets/images/qrcode_for_wx.jpg )] ( https://www.siteserver.cn / )
122+ [ ![ qrcode] ( https://sscms.com /assets/images/qrcode_for_wx.jpg )] ( https://sscms.com / )
119123
120124## License
121125
122126[ GNU GENERAL PUBLIC LICENSE 3.0] ( LICENSE )
123127
124- Copyright (C) 2003-2020 SiteServer CMS
128+ Copyright (C) 2003-2020 SSCMS
0 commit comments