mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
19 lines
553 B
C#
19 lines
553 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.Debug.Common;
|
|
|
|
namespace Cosmos.VS.Windows {
|
|
static public class Global {
|
|
/// <summary>A pipe used to send requests to the AD7Process.</summary>
|
|
static public Cosmos.Debug.Common.PipeClient PipeUp;
|
|
static public EnvDTE.OutputWindowPane OutputPane;
|
|
|
|
static Global() {
|
|
PipeUp = new Cosmos.Debug.Common.PipeClient(Pipes.UpName);
|
|
}
|
|
|
|
static public Cosmos.Debug.Common.PipeClient ConsoleTextChannel;
|
|
}
|
|
}
|