in src/Microsoft.VisualStudio.Extensibility.Testing.Xunit.Shared/Harness/EventLogCollector.cs [288:305]
private static bool IsValidDotNetEntry(EventRecord eventLogRecord, [NotNullWhen(true)] out FeedbackItemDotNetEntry? dotNetEntry)
{
if (StringComparer.InvariantCultureIgnoreCase.Equals(eventLogRecord.ProviderName, DotNetProviderName)
&& DotNetEventId.Contains(eventLogRecord.Id))
{
dotNetEntry = new FeedbackItemDotNetEntry(eventLogRecord);
foreach (var app in VsRelatedExes)
{
if (dotNetEntry.Data.IndexOf(app, StringComparison.InvariantCultureIgnoreCase) >= 0)
{
return true;
}
}
}
dotNetEntry = null;
return false;
}