-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to enable VersionControl during analysis #2237
Conversation
@@ -447,6 +449,8 @@ private void CaptureArtifact(ArtifactLocation fileLocation) | |||
fileLocation.Uri = null; | |||
fileLocation.UriBaseId = null; | |||
} | |||
|
|||
_insertOptionalDataVisitor?.VisitArtifactLocation(fileLocation); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_insertOptionalDataVisitor [](start = 12, length = 26)
Is this strictly necessary? you call VisitRun(run) after analysis completes, won't this have the effect of ultimately visiting every artifact location?
Just curious. :)
@@ -346,6 +346,13 @@ private async Task<bool> FindFilesAsync(TOptions options, TContext rootContext) | |||
|
|||
directory = Path.GetFullPath(directories.Dequeue()); | |||
|
|||
#if NETFRAMEWORK | |||
if (string.IsNullOrEmpty(filter)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting! Please comment this code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.