我有一个使用 Reactive Extensions 和 ReactiveUI 的项目。我升级到预发布版本,我有以下代码行
OAPHCreationHelperMixin.ObservableToProperty(observable,
Function(x) x.Value
Visual Studio 告诉我 ObservableToPropertyin 方法有一个错误,即缺少以下程序集
Error 9
C:\Users\phelan\workspace\WeinMeasEval\WeinMeasEval\Global\ObservableBinding.vb
Reference required to assembly
'System.Reactive.Interfaces,
Version=2.0.20823.0,
Culture=neutral,
PublicKeyToken=31bf3856ad364e35'
containing the type 'System.Reactive.Concurrency.IScheduler'. Add one to your project.
现在我单击链接,该链接表明它将添加参考,然后什么也没有发生。如果我查看我的项目引用,我发现程序集确实在程序集列表中,并且它是正确的版本 2.0.20823.0,如果我查看路径,DLL 确实在那里。
有任何想法吗?