1 Star 0 Fork 110

杰克/ZKEACMS

forked from ZKEASOFT/ZKEACMS 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Run.sh 423 Bytes
一键复制 编辑 原始数据 按行查看 历史
ZKEASOFT 提交于 2023-11-24 21:10 . dotnet 8
#!/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/net8.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/net8.0/ZKEACMS.WebHost.dll
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/lonelyxmas/ZKEACMS.Core.git
[email protected]:lonelyxmas/ZKEACMS.Core.git
lonelyxmas
ZKEACMS.Core
ZKEACMS
master

搜索帮助