// 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.Extensibility.Data
{
public enum TrackedFileType
{
///
/// File tracked as input (like content included in an .msi).
///
Input,
///
/// Temporary file (like an .idt or any other temporary file).
/// These are to be deleted before the build completes.
///
Temporary,
///
/// Intermediate file (like a .cab in the cabcache).
/// These are left for subsequent builds.
///
Intermediate,
///
/// Final output (like a .msi, .cab or .wixpdb).
/// These are the whole point of the build process.
///
Final,
}
}