-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDotNetBuild.Task.ps1
33 lines (30 loc) · 1.32 KB
/
DotNetBuild.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
24
25
26
27
28
29
30
31
32
33
Add-BuildTask DotNetBuild @{
# This task should be skipped if there are no C# projects to build
If = $dotnetProjects
Inputs = {
# Exclude generated source files in /obj/ folders
Get-ChildItem (Split-Path $dotnetProjects) -Recurse -File -Filter *.cs |
Where-Object FullName -NotMatch "[\\/]obj[\\/]"
}
Outputs = {
foreach ($project in $dotnetProjects) {
$BaseName = Split-Path $project -LeafBase
(Get-ChildItem (Join-Path (Split-Path $project) bin) -Filter "$BaseName.dll" -Recurse -ErrorAction Ignore) ?? $BuildRoot
}
}
Jobs = "DotNetRestore", "GitVersion", {
$local:options = @{} + $script:dotnetOptions
# We never do self-contained builds
if ($options.ContainsKey("-runtime") -or $options.ContainsKey("-ucr")) {
$options["-no-self-contained"] = $true
}
foreach ($project in $dotnetProjects) {
$Name = (Split-Path $project -LeafBase).ToLower()
if ($GitVersion.$Name) {
$options["p"] = "Version=$($GitVersion.$Name.InformationalVersion)"
}
Write-Build Gray "dotnet build $project --configuration $configuration -p $($options["p"])"
dotnet build $project --configuration $configuration @options
}
}
}