.NetStandard 2.0不能被针对xamarin.ios版本1.0的项目引用

时间:2018-04-16 12:18:36

标签: xamarin xamarin.ios .net-standard-2.0

我正在尝试将Xamarin.Forms项目升级到Xamarin.iOS中的.Net Standard 2.0。到目前为止它在xamarin.android中运行良好,但是当我们编译它时 iOS在mac机器上的Visual Studio 2017社区版的complie时间抛出以下错误。

enter image description here

enter image description here 我们已经尝试清除obj和bin文件夹,我们的项目正在使用所有最新的xamarin.forms库。

此外,xamarin表单项目文件已经有以下条目

  <PropertyGroup>
    <TargetFramework>netstandard2.0</TargetFramework>
  </PropertyGroup>

1 个答案:

答案 0 :(得分:0)

经过大量探索之后,我遇到了以下链接,将pcl项目转换为.Net标准并且对我有用。

Blog link that explains the brief about Mutatio plugin

Github link where in author has explained how to install Mutatio plugin in VS 2017 for Mac