// 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
{
///
/// Various types of output.
///
public enum OutputType
{
/// Unknown output type.
Unknown,
/// Bundle output type.
Bundle,
/// Library output type.
Library,
/// Module output type.
Module,
/// Patch output type.
Patch,
/// Patch Creation output type.
PatchCreation,
/// Product output type.
Product,
/// Transform output type.
Transform,
/// Intermediate representation post-link output type.
IntermediatePostLink,
}
}