protected override void Initialize()
        {
            var options = new Options
            {
                Package        = this,
                Dte2           = GetService(typeof(DTE)) as DTE2,
                Dte            = GetGlobalService(typeof(DTE)) as DTE,
                ComponentModel = (IComponentModel)GetGlobalService(typeof(SComponentModel))
            };

            GenerateProxyCommand.Initialize(options);
            GenerateResourceCommandCommand.Initialize(options);
            base.Initialize();
        }
Esempio n. 2
0
 public static void Initialize(Options options)
 {
     Instance = new GenerateResourceCommandCommand(options);
 }