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
winforms splat reactiveui
rreynolds
source share