码迷,mamicode.com
首页 > 其他好文 > 详细

Xamarin+Prism开发详解一:PCL跨平台类库与Profile的关系

时间:2016-11-27 16:40:18      阅读:506      评论:0      收藏:0      [点我收藏+]

标签:update   one   image   sse   www   work   alpha   程序   body   

在【Xamarin+Prism小试牛刀:定制跨平台Outlook邮箱应用】中提到过以下错误,不知道大伙还记得不:

无法安装程序包“Microsoft.Identity.Client 1.0.304142221-alpha”。你正在尝试将此程序包安装到目标为“.NETPortable,Version=v4.5,Profile=Profile111”的项目中,但该程序包不包含任何与该框架兼容的程序集引用或内容文件。有关详细信息,请联系程序包作者。

不只是Microsoft.Identity.Client 有以上错误,有名的条形码二维码类库ZXing.Net.Mobile等也只支持Profile7。那Profile是什么?Profile111又是什么了?今天一一为你揭秘。

PCL (Portable Class Library)

PCL是跨平台代码共享的一种设计方式,简称可移植类库。Xamarin.Adroid,Xamarin.iOS.UWP都可以直接参照调用。主要是将平台无关的业务代码创建为PCL类库,不过随着MVVM框架的流行,Xamarin.Forms已经将View,ViewModel,Model都移植到了PCL类库,部分平台依赖比较强就分平台实现。

Profile

PCL类库对应的平台集合不一样,对应的Profile版本也不一样。如果自定义的PCL类库与Nuge上PCL包的Profile不一致,将导致开题的错误无法安装。

技术分享

比如上图PCL类库的目标集合对应的Profile如下(.csproj工程文件):

技术分享

全部的Profile版本如下:

技术分享

.NET 4.5目前对应的Profile为7,49,78,111,259. 可以查看本地目录【C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETPortable\v4.5\Profile】都有那些版本。

技术分享

具体的对应关系如下表:(Visual Studio 2015 Update3/Windows10环境)

Profile VS目标设置 对应平台
Profile7 技术分享
  • .NET 4.5
  • Windows 8 (含UWP)
  • Windows Store apps (Windows 8)
  • Xamarin.Android
  • Xamarin.iOS Classic
  • Xamarin.iOS Unified
  • Asp.NET core1.0
Profile49 技术分享
  • NET 4.5
  • Windows Phone 8 or later
  • Windows Phone Sliverlight 8
  • Xamarin.Android
  • Xamarin.iOS Classic
  • Xamarin.iOS Unified
  • Asp.NET core1.0
Profile78 技术分享
  • .NET 4.5
  • Windows Phone 8 or later
  • Windows 8(含UWP)
  • Windows Phone Sliverlight 8
  • Windows Store apps (Windows 8)
  • Xamarin.Android
  • Xamarin.iOS Classic
  • Xamarin.iOS Unified
  • Asp.NET core1.0
Profile111 技术分享
  • NET 4.5
  • Windows Phone 8.1 or later
  • Windows 8(含UWP)
  • Xamarin.Android
  • Xamarin.iOS Classic
  • Xamarin.iOS Unified
  • Asp.NET core1.0
Profile259 技术分享
  • .NET 4.5
  • Windows Phone 8.1 or later
  • Windows 8(含UWP)
  • Windows Phone Sliverlight 8
  • Windows Store apps (Windows 8)
  • Xamarin.Android
  • Xamarin.iOS Classic
  • Xamarin.iOS Unified
  • Asp.NET core1.0

没有System.Net.Http

Xamarin.Forms for Windows 开发的时候最好是使用Profile 7, 111, 259 。

Xamarin.Forms for UWP 开发的时候最好是使用Profile 111。

【备注】

Profile259没有System.Net.Http库,得安装微软的System.Net.Http包。目前流行的Http操作类库RestSharep也在招募PCL与UWP自愿者!

 

希望以后大家遇到无法安装包的时候可以自然的解决了!

Xamarin+Prism开发详解一:PCL跨平台类库与Profile的关系

标签:update   one   image   sse   www   work   alpha   程序   body   

原文地址:http://www.cnblogs.com/lixiaobin/p/PCLProfile.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!