This error message comes up when i try to build my app, but it still finds the KinectSensorChooserUI element. I'm using Kinect for Windows v1 sensor with SDK 1.8
<Window x:Class="Jump.Desktop.View.GameWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:k="http://schemas.microsoft.com/kinect/2013"
WindowStartupLocation="CenterScreen"
WindowStyle="None"
ResizeMode="NoResize"
WindowState="Maximized"
Title="Jump" Height="300" Width="300">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" Margin="10" Grid.Row="0">
<TextBlock Text="{Binding ElapsedTime}"></TextBlock>
</StackPanel>
<k:KinectSensorChooserUI HorizontalAlignment="Center" VerticalAlignment="Top" Name="sensorChooserUi" />
<k:KinectRegion x:Name="kinectRegion" Grid.Row="1">
<Grid>
</Grid>
</k:KinectRegion>
</Grid>
</Window>