Free cookie consent management tool by TermsFeed Policy Generator

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

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

Worked on OKB (#1174)

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