예제 #1
0
파일: JishHost.cs 프로젝트: plkumar/jish
        public JishHost(VSConsole jsConsole, IJishInterpreter jish)
        {
            this.jsConsole = jsConsole;
              this.jish = jish;
              solutionManager = ((IComponentModel) Package.GetGlobalService(typeof (SComponentModel))).GetService<ISolutionManager>();

              IsCommandEnabled = true;
        }
예제 #2
0
파일: JishHost.cs 프로젝트: plkumar/jish
        public JishHost(VSConsole jsConsole, IJishInterpreter jish)
        {
            this.jsConsole  = jsConsole;
            this.jish       = jish;
            solutionManager = ((IComponentModel)Package.GetGlobalService(typeof(SComponentModel))).GetService <ISolutionManager>();

            IsCommandEnabled = true;
        }
예제 #3
0
        public IHost CreateHost()
        {
            VSConsole console = new VSConsole();

            return(new JishHost(console, DefaultJishInterpreterFactory.CreateInterpreter(console)));
        }
예제 #4
0
 public IHost CreateHost()
 {
     VSConsole console = new VSConsole();
       return new JishHost(console, DefaultJishInterpreterFactory.CreateInterpreter(console));
 }