Move extraction context classes to the Semmle.Extraction.CSharp namespace

This commit is contained in:
Tamas Vajk
2024-11-13 14:28:04 +01:00
parent b7098b72a4
commit 46da5960ee
4 changed files with 7 additions and 7 deletions

View File

@@ -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,
}
}