2 Star 5 Fork 3

xuyiazl/XUCore.NetCore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pack.ps1 691 Bytes
一键复制 编辑 原始数据 按行查看 历史
xuyiazl 提交于 2023-06-29 19:09 . 6.4.11
. ".\common.ps1"
# Rebuild solution
Set-Location $slnPath
& dotnet restore
# Copy all nuget packages to the pack folder
foreach($project in $projects) {
$projectFolder = Join-Path $srcPath $project
# Create nuget pack
Set-Location $projectFolder
Remove-Item -Recurse (Join-Path $projectFolder "bin/Release")
& dotnet msbuild /p:Configuration=Release /p:SourceLinkCreate=true
& dotnet msbuild /t:pack /p:Configuration=Release /p:SourceLinkCreate=true
# Copy nuget package
$projectPackPath = Join-Path $projectFolder ("/bin/Release/" + $project + ".*.nupkg")
Move-Item $projectPackPath $packFolder
}
# Go back to the pack folder
Set-Location $slnPath
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/xuyiazl/XUCore.NetCore.git
[email protected]:xuyiazl/XUCore.NetCore.git
xuyiazl
XUCore.NetCore
XUCore.NetCore
master

搜索帮助