forked from PoshCode/Tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDotNetPack.Task.ps1
23 lines (19 loc) · 1015 Bytes
/
DotNetPack.Task.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Add-BuildTask DotNetPack @{
# This task should be skipped if there are no C# projects to build
If = $dotnetProjects
Jobs = "DotNetBuild", {
$local:options = @{} # + $script:dotnetOptions
$script:DotNetPublishRoot = New-Item $script:DotNetPublishRoot -ItemType Directory -Force -ErrorAction SilentlyContinue | Convert-Path
foreach ($project in $dotnetProjects) {
$Name = Split-Path $project -LeafBase
if ($GitVersion.$Name) {
$options["p"] = "Version=$($GitVersion.$Name.InformationalVersion)"
}
Write-Host "Publishing $Name"
Set-Location (Split-Path $project)
$OutputFolder = $DotNetPublishRoot
Write-Build Gray "dotnet pack $project --output '$OutputFolder' --no-build --configuration $configuration -p $($options["p"])"
dotnet pack $project --output "$OutputFolder" --no-build --configuration $configuration @options --include-symbols
}
}
}