System.XML.build 661 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <!-- NAnt build file for System.Xml.dll -->
  3. <project name="System.Xml" default="build">
  4. <property name="debug" value="false"/>
  5. <target name="build">
  6. <mkdir dir="../lib"/>
  7. <csc target="library" output="../lib/System.Xml.dll" debug="${debug}">
  8. <arg value="/nowarn:1595"/>
  9. <arg value="/unsafe"/>
  10. <sources>
  11. <includes name="**/*.cs"/>
  12. <excludes name="Test/**"/>
  13. </sources>
  14. </csc>
  15. <nant basedir="Test" target="build"/>
  16. </target>
  17. <target name="test">
  18. <nant basedir="Test" target="test"/>
  19. </target>
  20. <target name="clean">
  21. <nant basedir="Test" target="clean"/>
  22. </target>
  23. </project>