System.Drawing.build 667 B

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