Skip to content

Commit ecd75c9

Browse files
committed
🔧 Fix packing nanoFramework nugets
1 parent 583910c commit ecd75c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Build/build-functions.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ function Start-Tests {
9797
write-host -foreground blue "Run tests...END`n"
9898
}
9999

100-
function Start-PackNugets {
100+
function Start-PackNugets([boolean] $IncludeNanoFramework = $false) {
101101
$projectPaths = @(
102102
"UnitsNet\UnitsNet.csproj",
103103
"UnitsNet.Serialization.JsonNet\UnitsNet.Serialization.JsonNet.csproj",

Build/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ try {
3030
Update-GeneratedCode
3131
Start-Build -IncludeNanoFramework $IncludeNanoFramework
3232
Start-Tests
33-
Start-PackNugets
33+
Start-PackNugets -IncludeNanoFramework $IncludeNanoFramework
3434
Compress-ArtifactsAsZip
3535
}
3636
catch {

0 commit comments

Comments
 (0)