mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
18 lines
294 B
C#
18 lines
294 B
C#
using System;
|
|
|
|
namespace Semmle.Extraction.CSharp
|
|
{
|
|
/// <summary>
|
|
/// The mode in which a file is extracted.
|
|
/// </summary>
|
|
[Flags]
|
|
public enum ExtractorMode
|
|
{
|
|
None = 0,
|
|
Standalone = 1,
|
|
Pdb = 2,
|
|
QlTest = 4,
|
|
BinaryLog = 8,
|
|
}
|
|
}
|