Inheritance: ICommandFactory
Ejemplo n.º 1
0
        public override void BuildCommandSet()
        {
            var factory  = new ReplCommandFactory(Services);
            var commands = factory.GetCommands(TextView, TextBuffer);

            AddCommandSet(commands);
        }
Ejemplo n.º 2
0
 public override void BuildCommandSet() {
     if (VsAppShell.Current.CompositionService != null) {
         var factory = new ReplCommandFactory();
         var commands = factory.GetCommands(TextView, TextBuffer);
         AddCommandSet(commands);
     }
 }
Ejemplo n.º 3
0
 public override void BuildCommandSet()
 {
     if (VsAppShell.Current.CompositionService != null)
     {
         var factory  = new ReplCommandFactory();
         var commands = factory.GetCommands(TextView, TextBuffer);
         AddCommandSet(commands);
     }
 }