| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?xml version="1.0" encoding="iso-8859-1"?>
- <!-- NAnt build file for System.Security_test.dll -->
- <!-- Target build (default) builds tests -->
- <!-- Target test runs tests -->
- <project name="System.Security_test" default="build">
- <property name="debug" value="false"/>
- <property name="nunit_home" value="..\..\..\nunit"/>
- <target name="build">
- </target>
- <target name="assemblies">
- <csc target="library" output="System.Security_test.dll" debug="${debug}">
- <sources>
- <includes name="**/*.cs"/>
- </sources>
- <references basedir="..\..\..\nunit20">
- <includes name="NUnit.Framework.dll"/>
- <includes name="..\class\lib\corlib.dll"/>
- <includes name="..\class\lib\System.XML.dll"/>
- <includes name="..\class\lib\System.Security.dll"/>
- </references>
- </csc>
- <copy file="../../lib/System.Security.dll" tofile="System.Security.dll"/>
- <copy file="../../lib/System.XML.dll" tofile="System.XML.dll"/>
- </target>
- <target name="test" depends="assemblies">
- <exec program="..\..\..\nunit20\nunit-console.exe" commandline="System.Security_test.dll" failonerror="false"/>
- </target>
- <target name="clean">
- <delete file="System.Security_test.dll" failonerror="false"/>
- <delete file="System.Security.dll" failonerror="false"/>
- <delete file="System.XML.dll" failonerror="false"/>
- </target>
- </project>
|