File: src\FileStatus.cs
Web Access
Project: src\src\SignCheck\SignCheckTask\Microsoft.DotNet.SignCheckTask.csproj (Microsoft.DotNet.SignCheckTask)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
 
namespace SignCheckTask
{
    [Flags]
    public enum FileStatus
    {
        NoFiles = 0,
        UnsignedFiles = 0x01,
        SignedFiles = 0x02,
        SkippedFiles = 0x04,
        ExcludedFiles = 0x08,
        AllFiles = UnsignedFiles | SignedFiles | SkippedFiles | ExcludedFiles
    }
}