mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
9f8d265fb7
+ now in Delphi you can user INDY or Synapse + added synapse as svn:external + TStompClient.Receive(ATimeout: Integer): IStompFrame; REALLY NEED REFACTORY
21 lines
1.0 KiB
XML
21 lines
1.0 KiB
XML
<project name="MyProject" default="compile" basedir=".">
|
|
<target name="compile" description="Compiling..." >
|
|
<exec dir="." failonerror="true" searchpath="true" executable="msbuild.exe">
|
|
<arg value="examples\GlobalDemo\GlobalDemo\GlobalDemo.dproj"/>
|
|
<arg value="/nologo"/>
|
|
<arg value="/t:rebuild"/>
|
|
<arg value="/p:config=Release"/>
|
|
</exec>
|
|
<exec dir="." failonerror="true" searchpath="true" executable="msbuild.exe">
|
|
<arg value="examples\Chat\ChatClient\ChatClient.dproj"/>
|
|
</exec>
|
|
<exec dir="." failonerror="true" searchpath="true" executable="msbuild.exe">
|
|
<arg value="unittest\TestStompClient.dproj"/>
|
|
</exec>
|
|
<exec dir="." failonerror="true" searchpath="true" executable="unittest\TestStompClient.exe">
|
|
</exec>
|
|
<exec dir="." failonerror="true" searchpath="true" command="C:\tools\pasdoc\pasdoc.exe --output docs --name DelphiMSBuild2 --write-uses-list -S pasdocfiles.txt">
|
|
</exec>
|
|
</target>
|
|
</project>
|