System.Security.build 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <!-- NAnt build file for System.Security.dll -->
  3. <project name="System.Data" 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:1595"/>
  8. <arg value="/nowarn:0067"/>
  9. <arg value="/nowarn:0109"/>
  10. <arg value="/nowarn:0169"/>
  11. <arg value="/nowarn:0679"/>
  12. <arg value="/nowarn:0649"/>
  13. <arg value="/unsafe"/>
  14. <arg value="/noconfig"/>
  15. <arg value="/r:System.Xml.dll"/>
  16. <sources basedir=".">
  17. <includes name="System.Security.Cryptography.Xml/*.cs"/>
  18. </sources>
  19. <references>
  20. <includes name="../lib/corlib.dll"/>
  21. <includes name="../lib/System.Xml.dll"/>
  22. </references>
  23. </csc>
  24. <copy file="../lib/System.Security.dll" tofile="Test/System.Security.dll"/>
  25. </target>
  26. <target name="test" depends="build">
  27. <nant basedir="Test" target="test"/>
  28. </target>
  29. <target name="clean">
  30. <delete file="../lib/System.Security.dll" failonerror="false"/>
  31. <delete file="Test/System.Security.dll" failonerror="false"/>
  32. </target>
  33. </project>