私はXamarinは私が2つのエラーを取得していますがカルーセルビューカルーセルビューXamarinフォームが2つのエラー
フォームNugetからインストールを与える「Xamarin.Forms.CarouselView、バージョン= 0.0.0.0、Culture = neutral、PublicKeyToken = null '
2)「ResolveLibraryProjectImports」タスクが予期せず失敗しました。 System.IO.FileNotFoundException:アセンブリ 'MashamApp、Version = 0.0.0.0、Culture = neutral、PublicKeyToken ='を読み込めませんでした。おそらく、Android用プロファイルのMonoには存在しないでしょうか?あなたが正常に見えるので、私は、任意のコードの変更をお勧めすることはできません
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:control="clr-namespace:Xamarin.Forms;assembly=Xamarin.Forms.CarouselView"
x:Class="MashamApp.MainPage" BackgroundColor="#ff1b74bb">
<Grid x:Name="gMain" BackgroundColor="#ffebf6ff">
<Grid.RowDefinitions>
<RowDefinition Height="1*"></RowDefinition>
<RowDefinition Height="1*"></RowDefinition>
<RowDefinition Height="1*"></RowDefinition>
<RowDefinition Height="1*"></RowDefinition>
</Grid.RowDefinitions>
<Grid Grid.Row="0">
<Label x:Name="lblName" HorizontalTextAlignment="Center" VerticalTextAlignment="Center" FontSize="Medium" TextColor="White"></Label>
</Grid>
<Grid Grid.Row="1">
<control:CarouselView ItemsSource="{Binding MyDataSource}">
<control:CarouselView.ItemTemplate>
<DataTemplate>
<Label Text="{Binding LabelText}" />
</DataTemplate>
</control:CarouselView.ItemTemplate>
</control:CarouselView>
</Grid>
あなたはすべてのプロジェクトにNuGetパッケージをインストールしました。すなわち共有プロジェクトとAndroidプロジェクト –