@@ -20,7 +20,7 @@ $ErrorActionPreference = "Stop"
20
20
21
21
function Build () {
22
22
$logFile = Join-Path - Path $LogDir - ChildPath " $configuration \build.binlog"
23
- & dotnet build - c " $configuration " -- no- restore - v " $verbosity " / bl:" $logFile " / err " $properties " " $solution "
23
+ & dotnet build - c " $configuration " -- no- restore - v " $verbosity " / bl:" $logFile " / err $properties " $solution "
24
24
25
25
if ($LastExitCode -ne 0 ) {
26
26
throw " 'Build' failed for '$solution '"
@@ -57,7 +57,7 @@ function Help() {
57
57
58
58
function Pack () {
59
59
$logFile = Join-Path - Path $LogDir - ChildPath " $configuration \pack.binlog"
60
- & dotnet pack - c " $configuration " -- no- build -- no- restore - v " $verbosity " / bl:" $logFile " / err " $properties " " $solution "
60
+ & dotnet pack - c " $configuration " -- no- build -- no- restore - v " $verbosity " / bl:" $logFile " / err $properties " $solution "
61
61
62
62
if ($LastExitCode -ne 0 ) {
63
63
throw " 'Pack' failed for '$solution '"
@@ -66,7 +66,7 @@ function Pack() {
66
66
67
67
function Restore () {
68
68
$logFile = Join-Path - Path $LogDir - ChildPath " $configuration \restore.binlog"
69
- & dotnet restore - v " $verbosity " / bl:" $logFile " / err " $properties " " $solution "
69
+ & dotnet restore - v " $verbosity " / bl:" $logFile " / err $properties " $solution "
70
70
71
71
if ($LastExitCode -ne 0 ) {
72
72
throw " 'Restore' failed for '$solution '"
@@ -75,7 +75,7 @@ function Restore() {
75
75
76
76
function Test () {
77
77
$logFile = Join-Path - Path $LogDir - ChildPath " $configuration \test.binlog"
78
- & dotnet test - c " $configuration " -- no- build -- no- restore - v " $verbosity " / bl:" $logFile " / err " $properties " " $solution "
78
+ & dotnet test - c " $configuration " -- no- build -- no- restore - v " $verbosity " / bl:" $logFile " / err $properties " $solution "
79
79
80
80
if ($LastExitCode -ne 0 ) {
81
81
throw " 'Test' failed for '$solution '"
0 commit comments