Skip to content

Commit 9724809

Browse files
committed
Fix ILT0010 warnings
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.
1 parent b695a6d commit 9724809

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

UnitTests/UnitTests.HighPerformance.UWP/UnitTests.HighPerformance.UWP.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@
152152
<PackageReference Include="System.Runtime.CompilerServices.Unsafe">
153153
<Version>5.0.0</Version>
154154
</PackageReference>
155+
<!-- For warnings ILT0010, ILT0005, ILT0003 -->
156+
<PackageReference Include="System.Xml.XPath.XmlDocument">
157+
<Version>4.0.1</Version>
158+
</PackageReference>
155159
</ItemGroup>
156160
<ItemGroup>
157161
<ProjectReference Include="..\..\Microsoft.Toolkit.HighPerformance\Microsoft.Toolkit.HighPerformance.csproj">

0 commit comments

Comments
 (0)