Skip to content

Commit 971640d

Browse files
committed
fix build pipeling
1 parent 10ed4fc commit 971640d

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

UnitTests/UnitTestApp.xaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
<Application x:Class="UnitTests.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:controls="using:Microsoft.Toolkit.Uwp.UI.Controls"
5+
xmlns:ex="using:Microsoft.Toolkit.Uwp.UI.Extensions"
46
xmlns:local="using:UnitTests"
5-
RequestedTheme="Light" />
7+
RequestedTheme="Light">
8+
9+
<Application.Resources>
10+
<!--
11+
We need to manually import some types here to force the XAML compiler to add them to the XamlTypeInfo file.
12+
This is needed only when dynamically loading controls that the XAML compiler cannot find (ie using XamlReader.Load to load the controls).
13+
-->
14+
<Style TargetType="controls:UniformGrid" />
15+
<ex:NullableBool x:Key="nullableBool" />
16+
</Application.Resources>
17+
</Application>

0 commit comments

Comments
 (0)