1 Star 0 Fork 199

yesudwanyan/lin-cms-dotnetcore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build-all.ps1 487 Bytes
一键复制 编辑 原始数据 按行查看 历史
igeekfan 提交于 2019-07-09 01:23 . 重构项目路径
# COMMON PATHS
$rootFolder = (Get-Item -Path "./" -Verbose).FullName
# List of solutions
$solutionPaths = (
""
)
# Build all solutions
foreach ($solutionPath in $solutionPaths) {
$solutionAbsPath = (Join-Path $rootFolder $solutionPath)
Set-Location $solutionAbsPath
dotnet build
if (-Not $?) {
Write-Host ("Build failed for the solution: " + $solutionPath)
Set-Location $rootFolder
exit $LASTEXITCODE
}
}
Set-Location $rootFolder
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/yesudwanyan/lin-cms-dotnetcore.git
git@gitee.com:yesudwanyan/lin-cms-dotnetcore.git
yesudwanyan
lin-cms-dotnetcore
lin-cms-dotnetcore
master

搜索帮助