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