Free cookie consent management tool by TermsFeed Policy Generator

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

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

Worked on OKB data model and services (#1174)

File size: 772 bytes
Line 
1echo off
2svcutil.exe ^
3  http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService/mex ^
4  /out:ServiceClients ^
5  /namespace:*,HeuristicLab.Clients.OKB ^
6  /targetClientVersion:Version35 ^
7  /enableDataBinding ^
8  /reference:"C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll" ^
9  /collectionType:HeuristicLab.Core.ItemCollection`1 ^
10  /config:..\app.config
11
12echo.
13echo Tweaking generated data contracts ...
14
15REM Executing PowerShell scripts is usually not allowed by default (execution policy "Restricted").
16REM To enable script execution, execute the command "Set-ExecutionPolicy RemoteSigned" in a PowerShell with administrator privileges.
17
18PowerShell -File TweakServiceClients.ps1 ServiceClients.cs
19
20echo ... done
21echo.
22
23pause
Note: See TracBrowser for help on using the repository browser.