1 Star 0 Fork 103

dbulus / ZKEACMS

forked from ZKEASOFT / ZKEACMS 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Run.sh 423 Bytes
一键复制 编辑 原始数据 按行查看 历史
ZKEASOFT 提交于 2021-11-13 16:49 . Refactor plugin engine
#!/bin/sh
if ! [ -x "$(command -v dotnet)" ]; then
echo 'dotnet core sdk was not find, please install the latest sdk at first.'
exit 1
fi
file="src/ZKEACMS.WebHost/bin/Debug/net6.0/ZKEACMS.WebHost.dll"
if ! [ -f "$file" ];then
dotnet build ZKEACMS.sln
fi
cd src/ZKEACMS.WebHost
echo Starting...
ASPNETCORE_ENVIRONMENT="Development" ASPNETCORE_URLS="http://localhost:5000" dotnet bin/Debug/net6.0/ZKEACMS.WebHost.dll
C#
1
https://gitee.com/dbulus/ZKEACMS.Core.git
git@gitee.com:dbulus/ZKEACMS.Core.git
dbulus
ZKEACMS.Core
ZKEACMS
master

搜索帮助