mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
18 lines
921 B
XML
18 lines
921 B
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"/>
|
|
</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="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>
|