Addressing review comments

This commit is contained in:
Nikola Milosavljevic 2023-01-25 22:29:07 +00:00
parent a506f64358
commit 1648da6165
2 changed files with 3 additions and 1 deletions

View file

@ -233,7 +233,8 @@ namespace Microsoft.DotNet.SourceBuild.Tasks.LeakDetection
{
return NonShippingPackagesListFiles
.SelectMany(item => File.ReadAllLines(item.ItemSpec))
.Distinct();
.Distinct()
.ToList();
}
else
{

View file

@ -4,6 +4,7 @@ Date: Wed, 25 Jan 2023 20:21:17 +0000
Subject: [PATCH] Allow source-build to set UsingToolMicrosoftNetCompilers
property
backport: https://github.com/dotnet/runtime/pull/81180
---
eng/Versions.props | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)