ChangeLog 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. 2002-02-26 Duncan Mak <[email protected]>
  2. * StrongNameKeyPair.cs: Committed for Kevin Winchester ([email protected]>.
  3. 2002-02-24 Nick Drochak <[email protected]>
  4. * AssemblyNameFlags.cs: Use proper member name. Thanks corcompare!
  5. Fri Feb 22 18:54:13 CET 2002 Paolo Molaro <[email protected]>
  6. * MonoField.cs: implement GetValue as an internalcall.
  7. Implemented ToString().
  8. Tue Feb 19 20:36:04 CET 2002 Paolo Molaro <[email protected]>
  9. * Assembly.cs, Module.cs, MonoField.cs, MonoMethod.cs,
  10. MonoProperty.cs, ParameterInfo.cs: Implemented custom attributes
  11. related methods.
  12. Thu Feb 14 18:55:23 CET 2002 Paolo Molaro <[email protected]>
  13. * TypeAttributes.cs: update to latest spec.
  14. Mon Feb 11 19:50:27 CET 2002 Paolo Molaro <[email protected]>
  15. * Assembly.cs: handle throwOnError in GetType() call.
  16. 2002-02-07 Duncan Mak <[email protected]>
  17. * AssemblyName.cs: Implemented ISerializable interface for the
  18. fields that we have.
  19. 2002-02-05 Duncan Mak <[email protected]>
  20. * Missing.cs:
  21. * TargetException.cs: Added in CVS.
  22. 2002-01-31 Duncan Mak <[email protected]>
  23. * ReflectionTypeLoadException.cs: Added missing bits.
  24. 2002-01-23 Duncan Mak <[email protected]>
  25. * AssemblyAlgorithmIdAttribute.cs:
  26. * AssemblyCompanyAttribute.cs:
  27. * AssemblyConfigurationAttribute.cs:
  28. * AssemblyCopyrightAttribute.cs:
  29. * AssemblyCultureAttribute.cs:
  30. * AssemblyDefaultAliasAttribute.cs:
  31. * AssemblyDelaySignAttribute.cs:
  32. * AssemblyDescriptionAttribute.cs:
  33. * AssemblyFileVersionAttribute.cs:
  34. * AssemblyFlagsAttribute.cs:
  35. * AssemblyInformationalVersionAttribute.cs:
  36. * AssemblyKeyFileAttribute.cs:
  37. * AssemblyKeyNameAttribute.cs:
  38. * AssemblyNameProxy.cs:
  39. * AssemblyProductAttribute.cs:
  40. * AssemblyTitleAttribute.cs:
  41. * AssemblyTradeMarkAttribute.cs:
  42. * AssemblyVersionAttribute.cs:
  43. * CustomAttributeFormatException.cs:
  44. * InvalidFilterCriteriaException.cs:
  45. * TargetParameterCountException.cs: Added.
  46. 2002-01-23 Miguel de Icaza <[email protected]>
  47. * Assembly.cs (Assembly.CodeBase): Implement.
  48. (Assembly.FullName): simplistic and broken implementation. Gets
  49. us where we were yesterday.
  50. Code style fix.
  51. Tue Jan 22 22:54:18 CET 2002 Paolo Molaro <[email protected]>
  52. * IReflect.cs: corrected GetMember() return type.
  53. * InterfaceMapping.cs, TypeDelegator.cs: implemented.
  54. Wed Jan 9 19:37:14 CET 2002 Paolo Molaro <[email protected]>
  55. * MonoMethod.cs: ToString () implementation.
  56. 2002-01-04 Ravi Pratap <[email protected]>
  57. * Assembly.cs : Decorate missing bits with the MonoTODO
  58. attribute.
  59. * ConstructorInfo.cs, MonoMethod.cs, MonoProperty.cs, ParameterInfo.cs,
  60. ReflectionTypeLoadException.cs : Ditto.
  61. * FieldInfo.cs : Ditto.
  62. Thu Jan 3 23:25:34 CET 2002 Paolo Molaro <[email protected]>
  63. * Assembly.cs: trow unimplemented exceptions.
  64. Tue Dec 18 18:46:22 CET 2001 Paolo Molaro <[email protected]>
  65. * MonoMethod.cs: implemented GetParameters().
  66. * MonoProperty.cs: PropertyInfo implementation.
  67. * ParameterInfo.cs: implemented.
  68. * PropertyInfo.cs: fixes.
  69. Thu Dec 13 20:18:05 CET 2001 Paolo Molaro <[email protected]>
  70. * FieldInfo.cs: implemented some Is* propeties.
  71. * MethodBase.cs: fixed attribute accessors.
  72. * MonoField.cs: runtime object to represent a field.
  73. * MonoMethod.cs: runtime object to represent a method.
  74. * AssemblyBuilder.cs: GetToken() methods to get tokens for
  75. strings, fields, methods...
  76. * ILGenerator.cs: handle tokens for methods.
  77. Mon Nov 19 13:56:55 CET 2001 Paolo Molaro <[email protected]>
  78. * MethodBase.cs: add internal get_next_table_index() for use in
  79. Reflection.Emit.
  80. Wed Nov 14 16:53:28 CET 2001 Paolo Molaro <[email protected]>
  81. * Assembly.cs: implement some of the Load() methods.
  82. * ConstructorInfo.cs: some missing stubs and fields.
  83. * FieldInfo.cs: IsInitOnly property.
  84. * ParameterInfo.cs: stubs for missing properties.
  85. * ParameterModifier.cs: implemented class.
  86. 2001-11-10 Sean MacIsaac <[email protected]>
  87. * Assembly.cs: Filled in some stub implementations
  88. * ConstructorInfo.cs: Added some stub functions for NUnit
  89. Fri Nov 2 18:29:36 CET 2001 Paolo Molaro <[email protected]>
  90. * AmbiguousMatchException.cs,
  91. * Assembly.cs, Module.cs: updates.
  92. * FieldInfo.cs: better compliance to the spec.
  93. * MethodBase.cs: move call_conv out of the way.
  94. * AssemblyBuilder.cs: don't use internalcalls, more stuff supported.
  95. * FieldBuilder.cs: implemented.
  96. * ILGenerator.cs: implemented some opcode handling.
  97. * Label.cs: add constructor.
  98. * LocalBuilder.cs: implemented.
  99. * MethodBuilder.cs: don't use internalcalls, more implemented stuff.
  100. * ModuleBuilder.cs: don't use internalcalls, more meat here, too.
  101. * ParameterBuilder.cs: implemented.
  102. * PropertyBuilder.cs: implemented.
  103. * TypeBuilder.cs: don't use internalcalls, more stuff working.
  104. Tue Sep 25 16:48:50 CEST 2001 Paolo Molaro <[email protected]>
  105. * ConstructorInfo.cs, MemberFilter.cs, Module.cs: added.
  106. Fri Sep 14 16:12:08 CEST 2001 Paolo Molaro <[email protected]>
  107. * MethodBase.cs, MethodInfo.cs: added.
  108. Thu Sep 13 18:05:16 CEST 2001 Paolo Molaro <[email protected]>
  109. * Assembly.cs: added stub code.
  110. 2001-07-18 Michael Lambert <[email protected]>
  111. * BindingFlags.cs: Add.