Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/GenerateServiceClients.cmd @ 6765

Last change on this file since 6765 was 5295, checked in by swagner, 14 years ago

Worked on OKB (#1174)

File size: 2.0 KB
RevLine 
[4433]1echo off
[4466]2
3echo.
4echo *******************************************************************************************
[4548]5echo Generating OKBService client
[4466]6echo.
7
[5295]8REM If app.config should be generated, use option "/config:..\app.config" instead of "/noConfig".
9
[4426]10svcutil.exe ^
[4548]11  http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService/mex ^
12  /out:OKBServiceClient ^
[4426]13  /namespace:*,HeuristicLab.Clients.OKB ^
[5286]14  /collectionType:System.Collections.Generic.List`1 ^
[4426]15  /targetClientVersion:Version35 ^
16  /enableDataBinding ^
[5295]17  /noConfig
[4433]18
19echo.
[4466]20echo ---------------------------------------------------------------------------------------
21echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
22echo.
[4456]23echo Following modifications have to be done manually in generated data contracts:
24echo  * Remove method "protected void RaisePropertyChanged(string propertyName)" in OKBItem
[4433]25echo.
[4466]26echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
27echo ---------------------------------------------------------------------------------------
28echo.
[4548]29echo Generation of OKBService client finished.
[4466]30echo *******************************************************************************************
31echo.
32echo.
33echo *******************************************************************************************
34echo Generating AuthenticationService client
35echo.
[4433]36
[5295]37REM If app.config should be generated, use options "/config:..\app.config" and "/mergeConfig" instead of "/noConfig".
38
[4466]39svcutil.exe ^
40  http://localhost:8732/Design_Time_Addresses/OKB-3.3/AuthenticationService/mex ^
41  /out:AuthenticationServiceClient ^
42  /namespace:*,HeuristicLab.Clients.OKB ^
[5286]43  /collectionType:System.Collections.Generic.List`1 ^
[4466]44  /targetClientVersion:Version35 ^
45  /enableDataBinding ^
[5295]46  /noConfig
[4466]47
48echo.
49echo Generation of AuthenticationService client finished.
50echo *******************************************************************************************
51echo.
52
[4433]53pause
Note: See TracBrowser for help on using the repository browser.