0

在 Xamarin MvvmCross Profile 111 .NetPortable 4.5 中安装 Refit

Severity    Code    Description Project File    Line    Suppression State Error Could not install package 'Refit 4.0.1'. You are trying to install this package into a project that targets '.NETPortable,Version=v4.5,Profile=Profile111', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.    0

发布于改装问题 #376

文档确实

Refit 目前支持以下平台和任何 .NET Standard 1.4 目标:

  • UWP
  • Xamarin.Android
  • Xamarin.Mac
  • Xamarin.iOS
  • 桌面
  • .NET 4.5
  • .NET 核心

我错过了什么吗?

4

2 回答 2

1

您正在将 Refit 4 安装到 PCL 中。Refit 是一个 NET Standard 1.4 库,任何PCL 配置文件都不能使用它。

将您的 PCL 升级到 NET Standard(最低 1.4)或将 Refit 降级到不是 NET Standard 的先前版本。

于 2017-09-28T14:54:00.253 回答
0

我使用 Angular CLI 构建了 .Net Core 应用程序,我停止了 dotnet watch 运行并重新执行了脚手架(这导致了这个构建错误),它运行良好,没有错误

于 2020-07-05T11:57:56.260 回答