Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/GenerateServiceClients.cmd @ 5633

Last change on this file since 5633 was 5599, checked in by ascheibe, 13 years ago

#1233

  • rename 'Slave' namespace to 'SlaveCore' (and assemblies etc) to avoid problems with 'Slave' class
  • use svcutil (OKB-style)
File size: 1.2 KB
Line 
1echo off
2
3echo.
4echo *******************************************************************************************
5echo Generating HiveService client
6echo.
7
8svcutil.exe ^
9  http://localhost/HiveService.svc?wsdl ^
10  /out:HiveServiceClient ^
11  /namespace:*,HeuristicLab.Clients.Hive ^
12  /collectionType:System.Collections.Generic.List`1 ^
13  /targetClientVersion:Version35 ^
14  /serializable ^
15  /enableDataBinding ^
16  /config:..\app.config
17
18echo.
19echo ---------------------------------------------------------------------------------------
20echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
21echo.
22echo Following modifications have to be done manually in generated data contracts:
23echo  * Remove method "protected void RaisePropertyChanged(string propertyName)" in OKBItem
24echo.
25echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
26echo ---------------------------------------------------------------------------------------
27echo.
28echo Generation of (Hive)OKBService client finished.
29echo *******************************************************************************************
30
Note: See TracBrowser for help on using the repository browser.