The following xaml code I get an error message.
<?xml version="1.0" encoding="utf-8" ?>
<CarouselPage xmlns="http://xamarin.com/schemas/2014/forms"'
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:prism="clr-namespace:Prism.Mvvm;assembly=Prism.Forms"
prism:ViewModelLocator.AutowireViewModel="True"
x:Class="MainPage"
x:Name="MainPageForm">
<ContentPage>
<Label>Year</Label>
</ContentPage>
<ContentPage>
<Label>Year2</Label>
</ContentPage>
</CarouselPage>
System.IO.FileNotFoundException: Could not load file or assembly 'Prism.Forms' or one of its dependencies.
The following xaml code I get an error message.
<?xml version="1.0" encoding="utf-8" ?><CarouselPage xmlns="http://xamarin.com/schemas/2014/forms"'xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"xmlns:prism="clr-namespace:Prism.Mvvm;assembly=Prism.Forms"prism:ViewModelLocator.AutowireViewModel="True"x:Class="MainPage"x:Name="MainPageForm"><ContentPage><Label>Year</Label></ContentPage><ContentPage><Label>Year2</Label></ContentPage></CarouselPage>System.IO.FileNotFoundException: Could not load file or assembly 'Prism.Forms' or one of its dependencies.