Inheritance: VSCodeDebug.DebugSession
Ejemplo n.º 1
0
        static void RunSession(Stream inputStream, Stream outputStream)
        {
            DebugSession debugSession = new UnityDebugSession();

            DebuggerLoggingService.CustomLogger = new CustomLogger();
            debugSession.Start(inputStream, outputStream).Wait();
        }
Ejemplo n.º 2
0
        static void RunSession(Stream inputStream, Stream outputStream)
        {
            Log.Write("Running session");
            DebugSession debugSession = new UnityDebugSession();

            DebuggerLoggingService.CustomLogger = new CustomLogger();
            debugSession.Start(inputStream, outputStream).Wait();
            Log.Write("Session Terminated");
        }
Ejemplo n.º 3
0
        private static void RunSession(Stream inputStream, Stream outputStream)
        {
            DebugSession debugSession = new UnityDebugSession();

            debugSession.Start(inputStream, outputStream).Wait();
        }
 private static void RunSession(Stream inputStream, Stream outputStream)
 {
     DebugSession debugSession = new UnityDebugSession();
     debugSession.Start(inputStream, outputStream).Wait();
 }