Debug bridge improvements

This commit is contained in:
Yoshi Askharoun
2022-06-07 14:30:29 -05:00
parent 649cab5d8d
commit 3700afad88
8 changed files with 91 additions and 20 deletions
@@ -8,5 +8,12 @@ namespace Microsoft.Iris.Debug
public bool OpenDebugPipe { get; set; } = false;
public List<System.Xml.XmlDocument> DecompileResults { get; } = new List<System.Xml.XmlDocument>();
public TraceSettings TraceSettings { get; } = TraceSettings.Current;
public Bridge Bridge { get; } =
#if ZUNE
new(OwlCore.Remoting.RemotingMode.Host);
#else
new();
#endif
}
}