Expose missing public field on Debugger (dotnet/coreclr#7258)
authorDan Moseley <danmose@microsoft.com>
Mon, 19 Sep 2016 20:56:59 +0000 (13:56 -0700)
committerGitHub <noreply@github.com>
Mon, 19 Sep 2016 20:56:59 +0000 (13:56 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/c4fcfff56c826813fe04daae2ae73104859b9352

src/coreclr/src/mscorlib/model.xml
src/coreclr/src/mscorlib/ref/mscorlib.cs

index 30c142e..266da44 100644 (file)
       <Member MemberType="Field" Name="value__" />
     </Type>
     <Type Name="System.Diagnostics.Debugger">
+      <Member MemberType="Field" Name="DefaultCategory" />
       <Member Name="#ctor" />
       <Member Name="Break" />
       <Member Name="get_IsAttached" />
index bc2dcd5..bb3b5e0 100644 (file)
@@ -4888,6 +4888,7 @@ namespace System.Diagnostics
     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
     public sealed partial class Debugger
     {
+        public static readonly string DefaultCategory;   
         [System.ObsoleteAttribute("Do not create instances of the Debugger class.  Call the static methods directly on this type instead", true)]
         public Debugger() { }
         public static bool IsAttached { [System.Security.SecuritySafeCriticalAttribute][System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]get { throw null; } }