首页 > 代码库 > VS2012 Nuget 安装 AutoMapper时报错的解决方法
VS2012 Nuget 安装 AutoMapper时报错的解决方法
VS2012 在.net 4.0下安装AutoMapper时,会报以下错误:
“AutoMapper”已拥有为“Standard.Library”定义的依赖项。
‘AutoMapper‘ already has a dependency defined for ‘Standard.Library‘.
经查应该是Nuget版本(VS2012的2.83版本)较低引起的,不支持Standard.Library框架。
解决方法有两个:
方式一
NuGet 2.12支持AutoMapper 5.0.1 NuGet 包使用的.NETStandard框架,所以需要把NuGet升级为NuGet 2.12 或以上。
但NuGet2.12是不支持Visual Studio 2012,所以也需要把Visual Studio升级为2013。
方式二(采用)
降级AutoMapper的版本到兼容当前版本的NuGet,经测试4.1.1完美安装上,并且顺带安装了Microsoft.Bcl,可以使用.Net4.5的await和 async了
PM> Install-Package AutoMapper -Version 4.1.1
Installing ‘AutoMapper 4.1.1‘.
Successfully installed ‘AutoMapper 4.1.1‘.
参考:
http://majing.io/questions/557
VS2012 Nuget 安装 AutoMapper时报错的解决方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。