| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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}">
- <arg value="/nowarn:1595"/>
- <sources>
- <includes name="**/*.cs"/>
- </sources>
- <references basedir="..\..\..\nunit">
- <includes name="NUnitCore.dll"/>
- <includes name="..\class\lib\corlib.dll"/>
- <includes name="..\class\lib\System.dll"/>
- <includes name="..\class\lib\System.Xml.dll"/>
- <includes name="..\class\lib\System.Security.dll"/>
- </references>
- <arg value="/r:..\..\lib\System.dll"/>
- <arg value="/r:..\..\lib\System.Xml.dll"/>
- <arg value="/r:..\..\lib\System.Security.dll"/>
- </csc>
- </target>
- <target name="test" depends="assemblies">
- <exec program="..\..\..\nunit\NUnitConsole" commandline="MonoTests.System.Security.AllTests,System.Security_test.dll" failonerror="false"/>
- </target>
- <target name="clean">
- <delete file="System.Security.dll" failonerror="false"/>
- <delete file="System.Security_test.dll" failonerror="false"/>
- </target>
- </project>
|