Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/ServiceClients/GenerateServiceClients.cmd @ 5533

Last change on this file since 5533 was 5299, checked in by swagner, 14 years ago

Worked on OKB (#1174)

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