Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Experiments / Generator / Generators / NAntScript / Templates / default.build
blob0566beca447abf0066807bd94895d473c8317edb
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project name="<%= Project %>" default="build">
4 <target name="build" description="Builds the app">
5 <mkdir dir="bin" />
6 <copy todir="bin">
7 <fileset basedir="lib">
8 <include name="*.*" />
9 </fileset>
10 </copy>
11 <csc target="exe" output="bin/<%= Project %>.exe">
12 <sources>
13 <% for source in Sources: %>
14 <include name="<%= source %>" />
15 <% end %>
16 </sources>
17 <references>
18 <% for reference in References: %>
19 <include name="<%= reference %>" />
20 <% end %>
21 </references>
22 </csc>
23 </target>
25 <target name="clean" description="Sweep it yeah!">
26 <delete>
27 <fileset>
28 <include name="bin/**" />
29 </fileset>
30 </delete>
31 </target>
33 </project>