Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Clients.Access/3.3/ServiceClients/GenerateServiceClients.cmd @ 8042

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

#1648 integrated access service client parts into trunk

File size: 1.2 KB
RevLine 
[8042]1echo off
2
3echo.
4echo *******************************************************************************************
5echo Generating AccessService client
6echo.
7
8svcutil.exe ^
9  http://localhost:81/AccessService?wsdl ^
10  /out:AccessServiceClient ^
11  /namespace:*,HeuristicLab.Clients.Access ^
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 AccessServiceItem
24echo.
25echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
26echo ---------------------------------------------------------------------------------------
27echo.
28echo Generation of AccessService client finished.
29echo *******************************************************************************************
30
Note: See TracBrowser for help on using the repository browser.