Fix tool reference update

This commit is contained in:
Pavel Krymets 2017-08-25 13:13:04 -07:00
parent 8cc1cdc62f
commit c9c21d2ce9
1 changed files with 2 additions and 1 deletions

View File

@ -114,7 +114,8 @@ namespace Microsoft.AspNetCore.AzureAppServices.FunctionalTests
var csproj = testDirectory.GetFiles("*.csproj").Single().FullName;
var projectContents = XDocument.Load(csproj);
var packageReferences = projectContents
.Descendants("PackageReference");
.Descendants("PackageReference")
.Concat(projectContents.Descendants("DotNetCliToolReference"));
foreach (var packageReference in packageReferences)
{