System.Security.build 749 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <!-- NAnt build file for System.Security.dll -->
  3. <project name="System.Security" default="build">
  4. <property name="debug" value="false"/>
  5. <target name="build">
  6. <csc target="library" output="../lib/System.Security.dll" debug="${debug}">
  7. <arg value="/nowarn:0169"/>
  8. <arg value="/noconfig"/>
  9. <arg value="/r:..\lib\System.XML.dll"/>
  10. <sources basedir=".">
  11. <includes name="System.Security.Cryptography.Xml/*.cs"/>
  12. </sources>
  13. </csc>
  14. </target>
  15. <target name="test" depends="build">
  16. <nant basedir="Test" target="test"/>
  17. </target>
  18. <target name="clean">
  19. <delete file="../lib/System.Security.dll" failonerror="false"/>
  20. <nant basedir="Test" target="clean"/>
  21. </target>
  22. </project>