System.Configuration.Install_test.build 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <!-- NAnt build file for System.Configuration.Install_test.dll -->
  3. <!-- Target build (default) builds tests -->
  4. <!-- Target test runs tests -->
  5. <project name="System_test" default="build">
  6. <property name="debug" value="true"/>
  7. <property name="nunit_home" value="..\..\..\nunit"/>
  8. <target name="build">
  9. </target>
  10. <target name="assemblies">
  11. <csc target="library" output="System.Configuration.Install_test.dll" debug="${debug}">
  12. <sources>
  13. <includes name="**/*.cs"/>
  14. </sources>
  15. <references basedir="..\..\..\nunit">
  16. <includes name="NUnitCore.dll"/>
  17. </references>
  18. <arg value="/noconfig"/>
  19. </csc>
  20. </target>
  21. <target name="test" depends="assemblies">
  22. <exec program="..\..\..\nunit\NUnitConsole" commandline="MonoTests.AllTests,System.Configuration.Install_test.dll" failonerror="false"/>
  23. </target>
  24. <target name="clean">
  25. <delete file="System.Configuration.Install_test.dll" failonerror="false"/>
  26. <delete file="System.Configuration.Install_test.pdb" failonerror="false"/>
  27. </target>
  28. </project>