ChangeLog 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. 2002-04-10 Jonathan Pryor <[email protected]>
  2. * TraceListenerCollection.cs: Corrected indexer property to provide the
  3. correct return value and implement the IList indexer property correctly.
  4. 2002-04-07 Jonathan Pryor <[email protected]>
  5. * TraceListener.cs: Fix stack overflow bug
  6. * DefaultTraceListener.cs: Implement log file support
  7. 2002-04-04 Dick Porter <[email protected]>
  8. * ThreadWaitReason.cs:
  9. * ThreadState.cs:
  10. * ThreadPriorityLevel.cs:
  11. * ProcessWindowStyle.cs:
  12. * ProcessThreadCollection.cs
  13. * ProcessThread.cs:
  14. * ProcessStartInfo.cs:
  15. * ProcessModuleCollection.cs: Stub out more classes needed for Process
  16. 2002-03-31 Dick Porter <[email protected]>
  17. * Process.cs:
  18. * ProcessPriorityClass.cs:
  19. * ProcessModule.cs:
  20. * FileVersionInfo.cs: Stub out classes needed for Process
  21. 2002-03-08 Jonathan Pryor <[email protected]>
  22. * Debug.cs: Clean up (lots of code can be shared with Trace.cs, which
  23. is why TraceImpl.cs is introduced), "DEBUG" conditional support
  24. * TraceListener.cs: Proper implementation of Dispose pattern;
  25. implementatino of non-abstract methods in terms of abstract methods
  26. * TraceListenerCollection.cs: check 'object' types before adding
  27. * TextWriterTraceListener.cs: properly implement Dispose pattern;
  28. handle NeedIndent and WriteIndent
  29. * Trace.cs: new file; provides Trace functionality, "TRACE" conditional
  30. support
  31. * DefaultTraceListener.cs: new file; the default trace listener
  32. 2002-01-17 Miguel de Icaza <[email protected]>
  33. * TraceListenerCollection.cs: Remove Warnings.
  34. 2002-01-06 Ravi Pratap <[email protected]>
  35. * Switch.cs, TraceListenerCollection.cs : Decorate incomplete bits
  36. with the MonoTODO attribute.
  37. 2002-01-04 John R. Hicks <[email protected]>
  38. * Added Debug.cs to the build.
  39. 2002-01-04 John R. Hicks <[email protected]>
  40. * Added preliminary TraceListenerCollection.cs to the build.
  41. 2002-01-04 John R. Hicks <[email protected]>
  42. * Added TraceListener.cs, TextWriterTraceListener.cs, and
  43. DefaultTraceListener.cs to the build and moved them into the
  44. proper assembly.
  45. 2002-01-04 John R. Hicks <[email protected]>
  46. * Added DiagnosticsConfigurationHandler.cs to the build.
  47. 2001-09-09 Nick Drochak <[email protected]>
  48. * BooleanSwitch.cs: Make this class use it's parent class's features. Namely, use SwitchSetting
  49. so that we can get OnSwitchSettingChanged() to fire for free.
  50. 2001-09-09 Nick Drochak <[email protected]>
  51. * ChangeLog: added this file
  52. * Switch.cs: call OnSwitchSettingChanged() when the switch setting is, yes you gessed it, changed.