File: Installer\Windows\DetectState.cs
Web Access
Project: ..\..\..\src\Cli\dotnet\dotnet.csproj (dotnet)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
#nullable disable
 
namespace Microsoft.DotNet.Cli.Installer.Windows;
 
/// <summary>
/// The state associated with a Windows Installer package after
/// attempting to detect it.
/// </summary>
internal enum DetectState
{
    /// <summary>
    /// The installation state of the package could not be determined.
    /// </summary>
    Unknown = 0,
    /// <summary>
    /// The package is already installed.
    /// </summary>
    Present = 1,
    /// <summary>
    /// The package is not installed.
    /// </summary>
    Absent = 2,
}