如果我有一个多目标(netstandard16和PCL Profile44)项目(新SDK样式csproj)并且我在Xamarin.iOS / Android项目中将其作为项目参考引用,我该如何指定引用的平台?
Xamarin项目采用netstandard标准,但在这种情况下我想使用PCL。
答案 0 :(得分:2)
你不能和NuGet一起赢。 Netstandard始终胜过传统的PCL。你为什么要反过来?
答案 1 :(得分:2)
您可以使用以下方法覆盖项目参考中的目标框架:
<ProjectReference Include="../other/other.csproj" AdditionalProperties="TargetFramework=your-pcl-TFM" />