Пример #1
0
        protected override void InitializeProperties()
        {
            VsProjectFlavorCfg vsProjectFlavorCfg = (VsProjectFlavorCfg)m_propertyDeployPort.GetCfgObjectFromObject(this.Objects[0]);

            InitializeDeployPort();
            InitializeDeployDevice(null);

            base.InitializeProperties();
        }
 public ProjectBuildProperty(string propName, IVsBuildPropertyStorage storage, VsProjectFlavorCfg cfg, _PersistStorageType type, _PersistStorageType typeDefault, string valDefault)
 {
     m_propName        = propName;
     m_storage         = storage;
     m_cfg             = cfg;
     m_type            = type;
     m_fPropertyLoaded = false;
     m_valDefault      = valDefault;
     m_typeDefault     = typeDefault;
 }
 public ProjectBuildPropertyBool(string propName, IVsBuildPropertyStorage storage, VsProjectFlavorCfg cfg, _PersistStorageType type) : base(propName, storage, cfg, type)
 {
 }
 public ProjectBuildProperty(string propName, IVsBuildPropertyStorage storage, VsProjectFlavorCfg cfg, _PersistStorageType type)
     : this(propName, storage, cfg, type, PersistStorageTypeNone, string.Empty)
 {
 }
 public ProjectBuildPropertyBool(string propName, IVsBuildPropertyStorage storage, VsProjectFlavorCfg cfg, _PersistStorageType type) : base (propName, storage, cfg, type)
 {
 }
 public ProjectBuildProperty(string propName, IVsBuildPropertyStorage storage, VsProjectFlavorCfg cfg, _PersistStorageType type)
     : this(propName, storage, cfg, type, PersistStorageTypeNone, string.Empty)
 {
 }
 public ProjectBuildProperty(string propName, IVsBuildPropertyStorage storage, VsProjectFlavorCfg cfg, _PersistStorageType type, _PersistStorageType typeDefault, string valDefault)
 {
     m_propName = propName;
     m_storage = storage;
     m_cfg = cfg;
     m_type = type;
     m_fPropertyLoaded = false;
     m_valDefault = valDefault;
     m_typeDefault = typeDefault;
 }
Пример #8
0
        public int CreateProjectFlavorCfg( IVsCfg pBaseProjectCfg, out IVsProjectFlavorCfg ppFlavorCfg )
        {
            InitBuildHost();
            
            ppFlavorCfg = new VsProjectFlavorCfg( this, pBaseProjectCfg );

            return Utility.COM_HResults.S_OK;
        }