Skip to content

Commit

Permalink
Fix ILT0010 warnings
Browse files Browse the repository at this point in the history
Code ILT0010: Could not find an assembly referenced by other assembly

The following warnings surfaced due to the missing assembly.
Since, the assembly is not found, any referenced code got hit with these warnings

Code ILT0005: The type from an assembly was not included in compilation, but was referenced in a method.
Code ILT0003: The method will always throw an exception due to the missing method in an assembly.
  • Loading branch information
Nirmal4G committed Sep 10, 2021
1 parent b695a6d commit 9724809
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@
<PackageReference Include="System.Runtime.CompilerServices.Unsafe">
<Version>5.0.0</Version>
</PackageReference>
<!-- For warnings ILT0010, ILT0005, ILT0003 -->
<PackageReference Include="System.Xml.XPath.XmlDocument">
<Version>4.0.1</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Microsoft.Toolkit.HighPerformance\Microsoft.Toolkit.HighPerformance.csproj">
Expand Down

0 comments on commit 9724809

Please sign in to comment.