66 Star 487 Fork 183

igeekfan / 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
C#
1
https://gitee.com/igeekfan/lin-cms-dotnetcore.git
git@gitee.com:igeekfan/lin-cms-dotnetcore.git
igeekfan
lin-cms-dotnetcore
lin-cms-dotnetcore
master

搜索帮助