| 123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="iso-8859-1"?>
- <!-- NAnt build file for System.Configuration.Install_test.dll -->
- <!-- Target build (default) builds tests -->
- <!-- Target test runs tests -->
- <project name="System_test" default="build">
- <property name="debug" value="true"/>
- <property name="nunit_home" value="..\..\..\nunit"/>
- <target name="build">
- </target>
- <target name="assemblies">
- <csc target="library" output="System.Configuration.Install_test.dll" debug="${debug}">
- <sources>
- <includes name="**/*.cs"/>
- </sources>
- <references basedir="..\..\..\nunit">
- <includes name="NUnitCore.dll"/>
- </references>
- <arg value="/noconfig"/>
- </csc>
- </target>
- <target name="test" depends="assemblies">
- <exec program="..\..\..\nunit\NUnitConsole" commandline="MonoTests.AllTests,System.Configuration.Install_test.dll" failonerror="false"/>
- </target>
- <target name="clean">
- <delete file="System.Configuration.Install_test.dll" failonerror="false"/>
- <delete file="System.Configuration.Install_test.pdb" failonerror="false"/>
- </target>
- </project>
|