2003-01-17 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System.Security / System.Security.build
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <!-- NAnt build file for System.Security.dll -->
4
5 <project name="System.Security" default="build">
6         <property name="debug" value="false"/>
7
8         <target name="build">
9                 <csc target="library" output="../lib/System.Security.dll" debug="${debug}">
10                         <arg value="/nowarn:0169"/>
11                         <arg value="/noconfig"/>
12                         <arg value="/r:..\lib\System.XML.dll"/>
13                         <sources basedir=".">
14                                 <includes name="System.Security.Cryptography.Xml/*.cs"/>
15                         </sources>
16                 </csc>
17         </target>
18
19         <target name="test" depends="build">
20                 <nant basedir="Test" target="test"/>
21         </target>
22
23         <target name="clean">
24                 <delete file="../lib/System.Security.dll" failonerror="false"/>
25                 <nant basedir="Test" target="clean"/>
26         </target>
27 </project>