C#: Early identification of duplicate extraction

This commit is contained in:
Tom Hvitved
2019-08-29 14:50:38 +02:00
parent 72db219c13
commit 8f3f9406e2
7 changed files with 128 additions and 79 deletions

View File

@@ -79,11 +79,6 @@ namespace Semmle.Extraction
/// </summary>
ILogger Logger { get; }
/// <summary>
/// The extractor SHA, obtained from the git log.
/// </summary>
string Version { get; }
/// <summary>
/// Creates a new context.
/// </summary>
@@ -201,6 +196,6 @@ namespace Semmle.Extraction
public ILogger Logger { get; private set; }
public string Version => $"{ThisAssembly.Git.BaseTag} ({ThisAssembly.Git.Sha})";
public static string Version => $"{ThisAssembly.Git.BaseTag} ({ThisAssembly.Git.Sha})";
}
}