Skip to content

Commit da7aa6b

Browse files
committed
Fix ci build on nanoFramework solution path
1 parent d8e7969 commit da7aa6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Build/build-functions.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ function Start-Build([boolean] $IncludeWindowsRuntimeComponent = $false, [boolea
6666
$appVeyorLoggerArg = if (Test-Path "$appVeyorLoggerDll") { "/logger:$appVeyorLoggerDll" } else { "" }
6767

6868
# msbuild does not auto-restore nugets for this project type
69-
& "nuget" restore "$root\UnitsNet.NanoFramework\GeneratedCode\UnitsNet.nanoFramework.sln"
69+
& "nuget" restore "$root\UnitsNet.nanoFramework.sln"
7070
# now build
71-
& "$msbuild" "$root\UnitsNet.NanoFramework\GeneratedCode\UnitsNet.nanoFramework.sln" /verbosity:minimal /p:Configuration=Release $fileLoggerArg $appVeyorLoggerArg
71+
& "$msbuild" "$root\UnitsNet.nanoFramework.sln" /verbosity:minimal /p:Configuration=Release $fileLoggerArg $appVeyorLoggerArg
7272
if ($lastexitcode -ne 0) { exit 1 }
7373
}
7474

0 commit comments

Comments
 (0)