1 Star 0 Fork 110

Tcalmighty/ZKEACMS.Core

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

搜索帮助