Cosmos/source2/VSIP/Cosmos.VS.Windows/Global.cs
kudzu_cp 73f5e2fd74 Cosmos output pane updates
Text data for windows now uses UTF8 on pipe instead of ASCII.
2012-01-08 23:37:39 +00:00

15 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.VS.Windows {
static public class Global {
static public Cosmos.Debug.Common.PipeClient PipeUp;
static public EnvDTE.OutputWindowPane OutputPane;
static Global() {
PipeUp = new Cosmos.Debug.Common.PipeClient(Cosmos.Debug.Consts.Pipes.UpName);
}
}
}