Free cookie consent management tool by TermsFeed Policy Generator

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

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

Worked on OKB (#1174)

File size: 1.7 KB
RevLine 
[4433]1echo off
[4466]2
3echo.
4echo *******************************************************************************************
[4548]5echo Generating OKBService client
[4466]6echo.
7
[4426]8svcutil.exe ^
[4548]9  http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService/mex ^
10  /out:OKBServiceClient ^
[4426]11  /namespace:*,HeuristicLab.Clients.OKB ^
12  /targetClientVersion:Version35 ^
13  /enableDataBinding ^
[4433]14  /config:..\app.config
15
16echo.
[4466]17echo ---------------------------------------------------------------------------------------
18echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
19echo.
[4456]20echo Following modifications have to be done manually in generated data contracts:
21echo  * Remove method "protected void RaisePropertyChanged(string propertyName)" in OKBItem
[4433]22echo.
[4466]23echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
24echo ---------------------------------------------------------------------------------------
25echo.
[4548]26echo Generation of OKBService client finished.
[4466]27echo *******************************************************************************************
28echo.
29echo.
30echo *******************************************************************************************
31echo Generating AuthenticationService client
32echo.
[4433]33
[4466]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
[4433]48pause
Note: See TracBrowser for help on using the repository browser.