I receive an error in my Windows Phone 8.1 app:
the text associated with this error code could not be found (ParseXamlException)
Line 28 Col 28
<UserControl
x:Class="ConnectorX_UniversalApp.UI.LoginUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:local="using:ConnectorX_UniversalApp.CommonUI">
<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot">
<Grid.Background>
<ImageBrush ImageSource="ms-appx:///Assets/CustomUI/background.png" Stretch="UniformToFill" />
</Grid.Background>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="120"/>
</Grid.ColumnDefinitions>
<StackPanel Orientation="Vertical" Grid.Column="0">
<TextBlock x:Uid="BuisnessConnectorTextBlock" Margin="5,15,0,0" FontSize="25" x:Name="BuisnessConnectorTextBlock" HorizontalAlignment="Stretch"/>
</StackPanel>
Xaml is valid. This error appears after I clone and run project on another laptop.