Skip to content

Commit 1bd0476

Browse files
committed
Fix build scripts to accomodate build infrastructure changes
1 parent f4aaf2f commit 1bd0476

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/System.Private.ServiceModel/tools/scripts/BuildCertUtil.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ setlocal
55
pushd %~dp0..\..\..\..\
66

77
:buildsln
8-
set buildtool=eng\common\cibuild.cmd -warnAsError 0 -configuration Release -projects src\System.Private.ServiceModel\tools\CertificateGenerator\CertificateGenerator.sln /p:Sign=false
8+
set buildtool=eng\common\cibuild.cmd -warnAsError 0 -configuration Release -projects src\System.Private.ServiceModel\tools\CertificateGenerator\CertificateGenerator.sln /p:Sign=false /p:Publish=false
99
echo %buildtool%
1010
call %buildtool%
1111

src/System.Private.ServiceModel/tools/scripts/BuildWCFSelfHostedService.cmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ setlocal
55
pushd %~dp0..\..\..\..\
66

77
:buildsln
8-
set buildtool=eng\common\cibuild.cmd -warnAsError 0 -configuration Release -projects src\System.Private.ServiceModel\tools\SelfHostedWcfService\SelfHostedWCFService.sln /p:Sign=false
8+
set buildtool=eng\common\cibuild.cmd -warnAsError 0 -configuration Release -projects src\System.Private.ServiceModel\tools\SelfHostedWcfService\SelfHostedWCFService.sln /p:Sign=false /p:Publish=false
99
echo %buildtool%
1010
call %buildtool%
1111

@@ -14,4 +14,5 @@ popd
1414
endlocal
1515

1616
:: Kill dotnet.exe process started by eng\common\cibuild.cmd which might remain running
17-
TASKKILL /F /IM dotnet.exe
17+
TASKKILL /F /IM dotnet.exe
18+
exit /b 0

0 commit comments

Comments
 (0)