// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. namespace WixToolset.Data { /// /// Types of parents in complex reference. /// public enum ComplexReferenceParentType { /// Unknown complex reference type, default and invalid. Unknown, /// Feature parent of complex reference. Feature, /// ComponentGroup parent of complex reference. ComponentGroup, /// FeatureGroup parent of complex reference. FeatureGroup, /// Module parent of complex reference. Module, /// Product parent of complex reference. Product, /// PayloadGroup parent of complex reference. PayloadGroup, /// Package parent of complex reference. Package, /// PackageGroup parent of complex reference. PackageGroup, /// Container parent of complex reference. Container, /// Layout parent of complex reference. Layout, /// Patch parent of complex reference. Patch, /// PatchFamilyGroup parent of complex reference. PatchFamilyGroup, } }