From 91c96ad7cab24854cea999924685ffeef0294f37 Mon Sep 17 00:00:00 2001 From: Erol Arkat Date: Fri, 24 Jul 2020 12:50:36 +0300 Subject: [PATCH] added -f parameter for test and release build --- build/build-all-release.ps1 | 2 +- build/build-all.ps1 | 2 ++ build/test-all.ps1 | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build/build-all-release.ps1 b/build/build-all-release.ps1 index 1c86351379..f54912d4f5 100644 --- a/build/build-all-release.ps1 +++ b/build/build-all-release.ps1 @@ -1,4 +1,4 @@ -. ".\common.ps1" +. ".\common.ps1" -f # Build all solutions diff --git a/build/build-all.ps1 b/build/build-all.ps1 index 5841b16bb6..16f8bf037c 100644 --- a/build/build-all.ps1 +++ b/build/build-all.ps1 @@ -4,6 +4,8 @@ $full = $args[0] # Build all solutions +Write-Host $solutionPaths + foreach ($solutionPath in $solutionPaths) { $solutionAbsPath = (Join-Path $rootFolder $solutionPath) Set-Location $solutionAbsPath diff --git a/build/test-all.ps1 b/build/test-all.ps1 index 1465bff6c3..9123aee313 100644 --- a/build/test-all.ps1 +++ b/build/test-all.ps1 @@ -1,4 +1,4 @@ -. ".\common.ps1" +. ".\common.ps1" -f # Test all solutions