1 | echo off
|
---|
2 |
|
---|
3 | echo.
|
---|
4 | echo *******************************************************************************************
|
---|
5 | echo Generating OKBService client
|
---|
6 | echo.
|
---|
7 |
|
---|
8 | REM If app.config should be generated, use option "/config:..\app.config" instead of "/noConfig".
|
---|
9 |
|
---|
10 | svcutil.exe ^
|
---|
11 | http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService/mex ^
|
---|
12 | /out:OKBServiceClient ^
|
---|
13 | /namespace:*,HeuristicLab.Clients.OKB ^
|
---|
14 | /collectionType:System.Collections.Generic.List`1 ^
|
---|
15 | /targetClientVersion:Version35 ^
|
---|
16 | /enableDataBinding ^
|
---|
17 | /noConfig
|
---|
18 |
|
---|
19 | echo.
|
---|
20 | echo ---------------------------------------------------------------------------------------
|
---|
21 | echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
|
---|
22 | echo.
|
---|
23 | echo Following modifications have to be done manually in generated data contracts:
|
---|
24 | echo * Remove method "protected void RaisePropertyChanged(string propertyName)" in OKBItem
|
---|
25 | echo.
|
---|
26 | echo !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
|
---|
27 | echo ---------------------------------------------------------------------------------------
|
---|
28 | echo.
|
---|
29 | echo Generation of OKBService client finished.
|
---|
30 | echo *******************************************************************************************
|
---|
31 | echo.
|
---|
32 | echo.
|
---|
33 | echo *******************************************************************************************
|
---|
34 | echo Generating AuthenticationService client
|
---|
35 | echo.
|
---|
36 |
|
---|
37 | REM If app.config should be generated, use options "/config:..\app.config" and "/mergeConfig" instead of "/noConfig".
|
---|
38 |
|
---|
39 | svcutil.exe ^
|
---|
40 | http://localhost:8732/Design_Time_Addresses/OKB-3.3/AuthenticationService/mex ^
|
---|
41 | /out:AuthenticationServiceClient ^
|
---|
42 | /namespace:*,HeuristicLab.Clients.OKB ^
|
---|
43 | /collectionType:System.Collections.Generic.List`1 ^
|
---|
44 | /targetClientVersion:Version35 ^
|
---|
45 | /enableDataBinding ^
|
---|
46 | /noConfig
|
---|
47 |
|
---|
48 | echo.
|
---|
49 | echo Generation of AuthenticationService client finished.
|
---|
50 | echo *******************************************************************************************
|
---|
51 | echo.
|
---|
52 |
|
---|
53 | pause
|
---|