Я создал новый проект с Xamarin в Visual Studio 2017. Стиль NETStandard
, но с самого начала появляются эти ошибки
![enter image description here](https://i.stack.imgur.com/Huvb1.png)
Также он не может загрузить NetStandard 2.00, даже если он там есть, я его видел ![enter image description here](https://i.stack.imgur.com/VpDkx.png)
MainPage.xaml
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:App3"
x:Class="App3.MainPage">
<StackLayout>
<!-- Place new controls here -->
<Label Text="Welcome to Xamarin.Forms!"
HorizontalOptions="Center"
VerticalOptions="CenterAndExpand" />
</StackLayout>
</ContentPage>
App.xaml
<?xml version="1.0" encoding="utf-8" ?>
<Application xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="App3.App">
<Application.Resources>
</Application.Resources>
</Application>
Так что, пожалуйста, любая помощь приветствуется