我正在将 WPF 应用程序移植到 Windows 应用商店应用程序。我有一些我想放入便携式类库的 View 模型。该代码使用reactiveui框架。我创建了该库,并使用 nuget 包管理器将 reactui 添加到项目中。我明白了:Could not install package 'reactiveui-platforms 5.4.0'. You are trying to install this package into a project that targets 'portable-net45+wp80+win', 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.
这真的是不受支持的配置还是我做错了?
最佳答案
ReactiveUI-Platforms
只是特定于平台的代码。你只需要在你的 PCL 中引用 ReactiveUI-Core
并在你的 WPF 和 Windows Store 应用程序中引用 ReactiveUI-Platforms
,一切都应该正常工作。
关于wpf - ReactiveUI + 可移植类库?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22003217/