Exemplo n.º 1
0
        public GeneroProjectNode(CommonProjectPackage package)
            : base(package, Utilities.GetImageList(typeof(GeneroProjectNode).Assembly.GetManifestResourceStream(VSGeneroConstants.ProjectImageList)))
        {
            Type projectNodePropsType = typeof(GeneroProjectNodeProperties);

            AddCATIDMapping(projectNodePropsType, projectNodePropsType.GUID);
        }
Exemplo n.º 2
0
 public RustProjectNode(CommonProjectPackage package)
     : base(package, Utilities.GetImageList(new System.Drawing.Bitmap(typeof(RustProjectNode).Assembly.GetManifestResourceStream("VisualRust.Project.Resources.IconList.bmp"))))
 {
     this.CanFileNodesHaveChilds      = false;
     this.CanProjectDeleteItems       = true;
     this.ListenForStartupFileUpdates = false;
 }
Exemplo n.º 3
0
 public PowerShellProjectNode(CommonProjectPackage package)
     : base(package, Utilities.GetImageList(typeof(PowerShellProjectNode).Assembly.GetManifestResourceStream("PowerShellTools.Project.Resources.ProjectIcon.bmp")))
 {
     _package = package;
     // TODO: Temporary!! AddCATIDMapping(typeof(PowerShellDebugPropertyPage), typeof(PowerShellDebugPropertyPage).GUID);
     AddCATIDMapping(typeof(PowerShellDebugPropertyPage), typeof(PowerShellDebugPropertyPage).GUID);
     AddCATIDMapping(typeof(PowerShellModulePropertyPage), typeof(PowerShellModulePropertyPage).GUID);
 }
Exemplo n.º 4
0
 public RustProjectNode(CommonProjectPackage package)
     : base(package, Utilities.GetImageList(new System.Drawing.Bitmap(typeof(RustProjectNode).Assembly.GetManifestResourceStream("VisualRust.Project.Resources.IconList.bmp"))))
 {
     this.CanFileNodesHaveChilds      = false;
     this.CanProjectDeleteItems       = true;
     this.ListenForStartupFileUpdates = false;
     projectPool = new ProjectWorkPool(this);
     projectPool.Start(1000);    // The scheduler timer fires every second
 }
 public PowerShellProjectNode(CommonProjectPackage package, bool dependenciesResolved)
     : base(package, ProjectImageList)
 {
     _dependenciesResolved = dependenciesResolved;
     _package = package;
     //AddCATIDMapping(typeof(GeneralPropertyPage), typeof(GeneralPropertyPage).GUID);
     AddCATIDMapping(typeof(DebugPropertyPage), typeof(DebugPropertyPage).GUID);
     AddCATIDMapping(typeof(ModuleManifestPropertyPage), typeof(ModuleManifestPropertyPage).GUID);
     AddCATIDMapping(typeof(BuildEventPropertyPage), typeof(BuildEventPropertyPage).GUID);
     AddCATIDMapping(typeof(AdvancedPropertyPage), typeof(AdvancedPropertyPage).GUID);
 }
        public PowerShellProjectFactory(CommonProjectPackage package)
            : base(package)
        {
            this.package = package;

            var loc      = Assembly.GetExecutingAssembly().Location;
            var fileInfo = new FileInfo(loc);
            //TODO:
            var targetspath = Path.Combine(fileInfo.Directory.FullName, "PowerShellTools.Targets");

            // package.SetGlobalProperty("PowerGUIVSXTargets", targetspath);

            var taskpath = Path.Combine(fileInfo.Directory.FullName, "PowerShellTools.Targets");

            //BuildEngine.SetGlobalProperty("PowerGUIVSXTasks", loc);
        }
Exemplo n.º 7
0
 public PythonProjectNode(CommonProjectPackage package)
     : base(package, Utilities.GetImageList(typeof(PythonProjectNode).Assembly.GetManifestResourceStream(PythonConstants.ProjectImageList)))
 {
 }
 public PowerShellConfigProvider(CommonProjectPackage package, CommonProjectNode manager)
     : base(manager)
 {
     _package = package;
     _node    = manager;
 }
Exemplo n.º 9
0
 public LuaEditorFactoryPromptForEncoding(CommonProjectPackage package) : base(package, true)
 {
 }
Exemplo n.º 10
0
 public LuaEditorFactory(CommonProjectPackage package, bool promptForEncoding) : base(package, promptForEncoding)
 {
 }
Exemplo n.º 11
0
 public PythonEditorFactory(CommonProjectPackage package) : base(package)
 {
 }
Exemplo n.º 12
0
 public RustProjectFactory(CommonProjectPackage pkg)
     : base(pkg)
 {
     this.pkg = pkg;
 }
Exemplo n.º 13
0
 public PowerShellEditorFactory(CommonProjectPackage package) : base(package)
 {
 }
Exemplo n.º 14
0
 public GeneroEditorFactory(CommonProjectPackage package) : base(package)
 {
 }
 public PowerShellProjectConfig(CommonProjectPackage package, CommonProjectNode project, string configuration)
     : base(project, configuration)
 {
     _package     = package;
     _projectNode = project;
 }
Exemplo n.º 16
0
 public LuaEditorFactory(CommonProjectPackage package) : base(package)
 {
 }
Exemplo n.º 17
0
 public PowerShellEditorFactory(CommonProjectPackage package, bool dependenciesResolved) : base(package)
 {
     _dependenciesResolved = dependenciesResolved;
 }
Exemplo n.º 18
0
 public KuinProjectFactory(CommonProjectPackage package) : base((IServiceProvider)package)
 {
     _package = package;
 }