Пример #1
0
        public WixComponent(string id, string guid, string appRegFolder) : base("Component")
        {
            this.SanitizeAndSetId(id);
            this.Guid = guid;

            Objects.Add(new WixRegistryValue(Id, appRegFolder));
            _ref = new WixComponentRef(this.Id);
        }
Пример #2
0
 public void AddComponentRef(WixComponentRef reff)
 {
     this.Objects.Add(reff);
 }