ReactiveUI 6.5 - When ReactiveObject is inherited in a class, I get a build error. Splat.dll not found.

I am using the Visual Studio 13 community. I created a simple WinForms project, created an empty class, and inherited ReactiveObject. I installed replivui-winforms 6.5.0 using NuGet. I see that version 1.0.0 has been installed and Splat is in the links.

The code:

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ReactiveUI; using Splat; namespace ReactiveSplatTest { class ReactiveObjectTest : ReactiveObject { } } 

In the properties for the Splat link, the path is:

 c:\users\rick reynolds\documents\visual studio 2013\Projects\ReactiveSplatTest\packages\Splat.1.0.0\lib\Net45\Splat.dll 

I checked that this is the right way. And that the Splat.dll file exists there.

 C:\Users\Rick Reynolds\Documents\Visual Studio 2013\Projects\ReactiveSplatTest\packages\Splat.1.0.0\lib\Net45 

I get this warning and error every time I create ...

Warning 1:

 Reference to type 'Splat.IEnableLogger' claims it is defined in 'c:\Users\Rick Reynolds\Documents\Visual Studio 2013\Projects\ReactiveSplatTest\packages\Splat.1.0.0\lib\Net45\Splat.dll', but it could not be found c:\Users\Rick Reynolds\Documents\Visual Studio 2013\Projects\ReactiveSplatTest\packages\reactiveui- core.6.5.0\lib\Net45\ReactiveUI.dll ReactiveSplatTest 

Error 2:

 The base class or interface 'Splat.IEnableLogger' in assembly 'Splat, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null' referenced by type 'ReactiveUI.IReactiveObject' could not be resolved c:\Users\Rick Reynolds\Documents\Visual Studio 2013\Projects\ReactiveSplatTest\packages\reactiveui- core.6.5.0\lib\Net45\ReactiveUI.dll ReactiveSplatTest 
+8
winforms splat reactiveui
source share

No one has answered this question yet.

See related questions:

7
Why does ReactiveUI depend on the old version of System.Reactive?
3
ReactiveUI 5.1 stackoverflowexception when executing something with ReactiveObject
one
As you create a user interface project with a multi-level solution, resolve EF objects without reference to the data access level
one
ReactiveUI WhenAny behavior depends on when a ReactiveObject is added to the ObservableCollection
one
Playback Initialization Fails When Calling Coded UI Test from Winform Application
0
Including HTML file with user control in winforms
0
How to install a Windows service without external resources, third-party applications, etc.?
0
Conflict warning after renaming a form
0
Dispatcher.CurrentDispatcher crashes ReactiveUI call
-one
Error with WindowName.Show ()

All Articles