| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- 2005-05-25 Zoltan Varga <[email protected]>
- * StackTrace.cs: Add an internal ctor which skips unmanaged frames.
- 2005-04-16 Sebastien Pouliot <[email protected]>
- * StackFrame.cs: Moved documentation comments (XML) to monodoc.
- Removed unused method ObjectsEqual.
- 2005-03-14 Sebastien Pouliot <[email protected]>
- * StackFrame.cs: Fix CAS unit tests for NET_1_1.
- * StackTrace.cs: Fix CAS unit tests for NET_1_1.
- 2005-03-04 Zoltan Varga <[email protected]>
- * StackFrame.cs: Add an internalMethodName field to return info about
- the various runtime wrappers.
- 2005-03-02 Chris Toshok <[email protected]>
- * DebuggerTypeProxyAttribute.cs, DebuggerBrowsableState.cs,
- DebuggerDisplayAttribute.cs, DebuggerBrowsableAttribute: first cut
- at 3/4 of the .net 2.0 debugger attributes.
- 2005-02-12 Marek Safar <[email protected]>
- * ConditionalAttribute.cs: NET_2_0 extension.
- 2005-01-27 Sebastien Pouliot <[email protected]>
- * StackFrame.cs: Add path discovery permission check for GetFilename
- method. Changed ToString to use a StringBuilder and report correctly
- (i.e. without exception) if filename is restricted. Removed dead code
- (Equals/GetHashCode).
- * StackTrace.cs: Removed dead code (Equals/GetHashCode).
- 2004-08-05 Sebastien Pouliot <[email protected]>
- * StackTrace.cs: Added missing exceptions. Added globalization. Now
- using StringBuilder in ToString (fusioned FrameToString).
- 2004-08-04 Sebastien Pouliot <[email protected]>
- * StackTrace.cs: Implemented GetFrames as public virtual for NET_2_0
- and internal for NET_1_0/NET_1_1 so it can be used for CAS. Removed
- XML documentation and mono-ized the source code.
- 2004-06-15 Gert Driesen <[email protected]>
- * StackTrace.cs: added TODO for serialization
- * StackFrame.cs: added TODO for serialization
- 2004-05-19 Gert Driesen ([email protected])
- * DebuggerHiddenAttribute.cs
- * DebuggerStepThroughAttribute.cs : now that Inherited is
- false by default on AttributeUsageAttribute (as it
- should be) we need to explicitly set Inherited to false
- for those attributes where it should be false.
- 2003-09-18 Ravi Pratap <[email protected]>
- * ConditionalAttribute.cs: AllowMultiple should be true according
- to bug #48598.
- 2003-09-02 Ravi Pratap <[email protected]>
- * DebuggerStepThroughAttribute.cs: Fix allowable targets to include class
- and struct; remove property targets.
- 2003-07-01 Zoltan Varga <[email protected]>
- * StackFrame.cs: Obtain frame info for 'fake' frames too, since this is
- what MS does.
- 2003-01-01 Jaime Anguiano Olarra <[email protected]>
- * Process.cs: skeleton for use in Remoting.
- 2002-06-19 Dietmar Maurer <[email protected]>
- * StackTrace.cs: impl. remaining constructors.
- 2002-06-18 Dietmar Maurer <[email protected]>
- * StackTrace.cs: use new internal call for constructors, use MS like
- trace format.
- * StackFrame.cs: impl. constructors using a new internal call.
- 2002-05-01 Duncan Mak <[email protected]>
- * DebuggableAttribute.cs: Added missing AttributeUsage attribute.
- 2002-04-08 Jonathan Pryor <[email protected]>
- * Debugger.cs: Added [MonoTODO] attribute to methods; modified IsLogging()
- and Log() so that System.Diagnostics.DefaultTraceListener could use them
- without having NotImplementedException's thrown, as the functionality
- DefaultTraceListener is using is non-critical.
- 2002-04-08 Nick Drochak <[email protected]>
- * ConditionalAttribute.cs: Add AttributeUsage attribute for methods.
- 2002-01-23 Duncan Mak <[email protected]>
- * DebuggerStepThroughAttribute.cs:
- * DebuggerHiddenAttribte.cs: Add to CVS.
- 2002-01-04 Ravi Pratap <[email protected]>
- * StackFrame.cs : Use the MonoTODO attribute to mark
- incomplete code.
- StackTrace.cs : Ditto.
- 2002-01-04 John R. Hicks <[email protected]>
- * Moved TraceListener, TextWriterTraceListener, and
- DefaultTraceListener to System assembly....oops.
- 2002-01-04 John R. Hicks <[email protected]>
- * Added TextWriterTraceListener.cs, TraceListener.cs, and
- DefaultTraceListener.cs to the build.
- 2002-01-04 John R. Hicks <[email protected]>
- * Added Debugger.cs to the build.
- 2001-09-02 Miguel de Icaza <[email protected]>
- * Moved BooleanSwitch, Switch, TraceLevel and TraceSwitch to the
- System assembly.
- * Added StackFrame.cs and StackTrace.cs to the build.
- 2001-08-21 Nick Drochak <[email protected]>
- * Implemented ConditionalAttribute.cs and DebuggableAttribute.cs
-
- 2001-08-29 Alexander Klyubin <[email protected]>
-
- * Skeletal implementation of StackFrame and StackTrace classes.
- The classes must be somehow connected to runtime environment in
- order to generate proper traces.
|