Merge branch 'merge/release/2.1-to-release/2.2' of github.com:dotnet-maestro-bot/Common into merge/release/2.1-to-release/2.2

This commit is contained in:
Pavel Krymets 2018-12-12 09:27:33 -08:00
parent 33609a988c
commit e952668572
1 changed files with 2 additions and 3 deletions

View File

@ -195,18 +195,17 @@ namespace Microsoft.AspNetCore.Analyzer.Testing
if (File.Exists(dll))
{
assemblies.Add(dll);
return true;
continue;
}
dll = Path.Combine(Directory.GetCurrentDirectory(), Path.GetFileName(assembly));
if (File.Exists(dll))
{
assemblies.Add(dll);
return true;
}
}
return false;
return assemblies.Count > 0;
}
}
}