Merge branch 'release/2.2'

This commit is contained in:
Pavel Krymets 2018-12-12 10:40:41 -08:00
commit 1f0827195c
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;
}
}
}