ChangeLog 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. 2002-12-31 Jonathan Pryor <[email protected]>
  2. * makefile.gnu: Add support for DIRS to all, install targets. This was done
  3. so type-reflector's install target could be independent/self-contained.
  4. 2002-12-27 Sebastien Pouliot <[email protected]>
  5. * ASN1.cs: New. Classes to manipulate Abstract Syntax Notation 1
  6. structures.
  7. * cert2spc.cs: New tool to generate Software Publisher Certificate
  8. (SPC) from a list of X509 certificate and CRL.
  9. * secutils.cs: Changed copyright notice.
  10. * makefile: Added cert2spc.exe to Windows build.
  11. * makefile.gnu: Added cert2spc.exe to Linux build.
  12. 2002-12-22 Sebastien Pouliot <[email protected]>
  13. * secutils.cs: New tool to extract strongname and X509 certificate
  14. from assembly (or other signed files).
  15. * makefile: Added secutil.exe to Windows build.
  16. * makefile.gnu: Added secutil.exe to Linux build.
  17. 2002-12-06 Duncan Mak <[email protected]>
  18. * makefile.gnu (clean): Remove *.dbg files.
  19. 2002-10-16 Daniel Morgan <[email protected]>
  20. * SqlSharpCli.cs: SQL query tool moved
  21. from mcs/class/System.Data/Test
  22. to mcs/tools/SqlSharp. Include it in the build
  23. so people can have a place to test connection strings
  24. and the ADO.NET providers
  25. 2002-09-01 Jonathan Pryor <[email protected]>
  26. * type-reflector: new tool. See type-reflector/README for more information.
  27. 2002-03-09 Martin Baulig <[email protected]>
  28. * DumpCultureInfo.cs: New tool to dump culture info. Incomplete,
  29. we need to get unicode support working before we can use this.
  30. 2002-03-05 Gaurav Vaish <[email protected]>
  31. * GenerateDelegate.cs: Generates delegates (EventHandler) as
  32. specified. The output is quite simple, a delegate that has
  33. the prototype as -->
  34. public delegate void <given-name>EventHandler(object sender,
  35. <given-name>EventArgs e)
  36. 2002-03-01 Martin Baulig <[email protected]>
  37. * scan-tests.pl: Catch exceptions when running the tests so that we
  38. always run all the tests in a test suite even if some of them fail.
  39. 2002-02-27 Martin Baulig <[email protected]>
  40. * scan-tests.pl: Moved this script here from ../class/corlib/Test.
  41. 2002-02-22 Nick Drochak <[email protected]>
  42. * makefile: move corcompare to it's own directory to hold multiple
  43. class files. still makes old corcompare for now. will remove that
  44. soon.
  45. 2002-02-18 Duncan Mak <[email protected]>
  46. * serialize.cs: When appropriate, changed Type.GetType calls to
  47. the faster typeof operator.
  48. 2002-02-19 Nick Drochak <[email protected]>
  49. * corcompare.cs: Reorganized into collaberating classes to analyze
  50. and generate reports. Still needs to find the MonoTODO's, and
  51. has a little more prototype code in there, but it's almost done.
  52. * makefile: output XML file in the tools directory for now.
  53. 2002-02-15 Nick Drochak <[email protected]>
  54. * corcompare.cs: Adding stuff to collect all the missing and todo
  55. information need to generate nice looking HTML pages. Not quite
  56. done and needs some re-org, but Duncan can take a look.
  57. * sample.xml: an example of how the XML will look that corcompare
  58. will generate. Can be used to start working on the XSLT.
  59. 2002-02-13 Nick Drochak <[email protected]>
  60. * makefile: 'clean' target now removes file generated by CorCompare
  61. 2002-02-03 Duncan Mak <[email protected]>
  62. * serialize.cs: Added namespace block.
  63. 2002-02-01 Duncan Mak <[email protected]>
  64. * serialize.cs: Added a new tool for serializing objects. It
  65. can create new types dynamically, but can only handle
  66. arguments that are of primitive types.
  67. 2002-01-26 Gaurav Vaish <[email protected]>
  68. * EnumCheckAssemblyCollection.cs,
  69. * assemblies.xml: Files related to EnumCheck checked-in. Now EnumCheck does
  70. not have any path hardcoded. It takes the assemblies to
  71. search from a xml files, which by default is assemblies.xml
  72. 2002-01-25 Nick Drochak <[email protected]>
  73. * .cvsignore: ignore .dll files now since we build NUnitCore.dll ourselves
  74. 2002-01-18 Duncan Mak <[email protected]>
  75. * EnumCheck.cs: A checkin for Miguel to make EnumCheck not hardcode
  76. path to corlib.dll.
  77. 2002-01-19 Nick Drochak <[email protected]>
  78. * makefile: corcompare works again now, so make xml of missing types
  79. * CorCompare.cs: use exception that .NET v1 throws to get types in mono corlib
  80. 2002-01-18 Nick Drochak <[email protected]>
  81. * makefile: remove path to beta2 csc.exe. path to csc.exe must be in PATH instead.
  82. don't generate xml from corcompare for now. it throws an error on v1.0 of .NET
  83. 2002-01-17 Nick Drochak <[email protected]>
  84. * IFaceDisco.cs, XMLUtil.cs: Added new files for interface discovery tool.
  85. * makefile: added target for IFaceDisco.exe and added to clean target for same
  86. 2002-01-08 John Barnette <[email protected]>
  87. * Removed todo.cs and related makefile data.
  88. 2002-01-07 John Barnette <[email protected]>
  89. * makefile: added todo target, fixed EnumCheck target, simplified clean
  90. * todo.cs: new file. generates todo list XML and compares assemblies
  91. 2002-01-07 Gaurav Vaish <[email protected]>
  92. * EnumCheck.cs: Get the numerical values of an enumeration.
  93. 2002-01-06 Nick Drochak <[email protected]>
  94. * corcompare.cs: Catch the FileNotFoundException and handle it nicely.
  95. 2002-01-05 Nick Drochak <[email protected]>
  96. * makefile: build corcompare
  97. * corcompare.cs: add new file. compares an assembly with mscorlib