mirror of
https://github.com/github/codeql.git
synced 2026-04-26 17:25:19 +02:00
Move extraction context classes to the Semmle.Extraction.CSharp namespace
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user