Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Clients.OKB/3.3/Administration/ServiceClient/GenerateServiceClient.cmd @ 8055

Last change on this file since 8055 was 8055, checked in by ascheibe, 12 years ago

#1174 integrated okb client parts into trunk

File size: 1.4 KB
Line 
1echo off
2
3echo.
4echo *******************************************************************************************
5echo Generating OKB administration service client
6echo.
7
8REM If app.config should be generated, use option "/config:..\..\app.config" and optionally "/mergeConfig" instead of "/noConfig".
9
10svcutil.exe ^
11  http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdministrationService/mex ^
12  /out:AdministrationServiceClient ^
13  /namespace:*,HeuristicLab.Clients.OKB.Administration ^
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 OKB administration service client finished.
30echo *******************************************************************************************
31echo.
32
33pause
Note: See TracBrowser for help on using the repository browser.