Browse Source

added -f parameter for test and release build

pull/4957/head
Erol Arkat 6 years ago
parent
commit
91c96ad7ca
  1. 2
      build/build-all-release.ps1
  2. 2
      build/build-all.ps1
  3. 2
      build/test-all.ps1

2
build/build-all-release.ps1

@ -1,4 +1,4 @@
. ".\common.ps1"
. ".\common.ps1" -f
# Build all solutions

2
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

2
build/test-all.ps1

@ -1,4 +1,4 @@
. ".\common.ps1"
. ".\common.ps1" -f
# Test all solutions

Loading…
Cancel
Save