Free cookie consent management tool by TermsFeed Policy Generator

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

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

Worked on OKB (#1174)

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