- Timestamp:
- 03/07/17 17:47:45 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.OKB/3.3/RunCreation/ServiceClient/GenerateServiceClient.cmd
r8055 r14726 1 echo off 1 @ECHO OFF 2 2 3 echo. 4 echo ******************************************************************************************* 5 echo Generating OKB run creation service client 6 echo. 3 SET HOST= 4 SET GENERATECONFIG= 7 5 8 REM If app.config should be generated, use option "/config:..\..\app.config" and optionally "/mergeConfig" instead of "/noConfig". 6 ECHO. 7 ECHO ******************************************************************************************* 9 8 10 svcutil.exe ^ 11 http://localhost:8732/Design_Time_Addresses/OKB-3.3/RunCreationService/mex ^ 12 /out:RunCreationServiceClient ^ 13 /namespace:*,HeuristicLab.Clients.OKB.RunCreation ^ 14 /collectionType:System.Collections.Generic.List`1 ^ 15 /targetClientVersion:Version35 ^ 16 /enableDataBinding ^ 17 /noConfig 9 SET /P HOST=Which host should be used? [services.heuristiclab.com]: 10 IF "%HOST%"=="" SET HOST=services.heuristiclab.com 18 11 19 echo. 20 echo Generation of OKB run creation service client finished. 21 echo ******************************************************************************************* 22 echo. 12 SET /P GENERATECONFIG=Would you like to generate the configuration file? [y]: 13 IF "%GENERATECONFIG%"=="" SET GENERATECONFIG=y 23 14 24 pause 15 SET ARGS=http://%HOST%/OKB-3.3/RunCreationService.svc?wsdl ^ 16 /out:RunCreationServiceClient ^ 17 /namespace:*,HeuristicLab.Clients.OKB.RunCreation ^ 18 /collectionType:System.Collections.Generic.List`1 ^ 19 /targetClientVersion:Version35 ^ 20 /enableDataBinding ^ 21 /syncOnly 22 23 IF "%GENERATECONFIG%"=="y" ( 24 SET ARGS=%ARGS% /config:..\..\app.config /mergeConfig 25 ) ELSE ( 26 SET ARGS=%ARGS% /noConfig 27 ) 28 29 ECHO. 30 ECHO Generating RunCreationService client 31 ECHO. 32 33 SETLOCAL ENABLEDELAYEDEXPANSION 34 svcutil.exe %ARGS% 35 ENDLOCAL 36 37 ECHO. 38 ECHO Generation of RunCreationService client finished. 39 ECHO ******************************************************************************************* 40 ECHO. 41 42 PAUSE
Note: See TracChangeset
for help on using the changeset viewer.