librariesio/bibliothecary

"Include not found" for .csproj if the file has Update reference

sadikay opened this issue · 1 comments

If the .csproj file like below the analyzer fails and returns [] dependencies because of the Update reference in the last node.

  <ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore" Version="1.1.1" />
    <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
  </ItemGroup>

  <ItemGroup>
    <PackageReference Update="Microsoft.NETCore.App" Version="1.1.1" />
  </ItemGroup>

@katzj any update ?