I am trying to follow the pattern shown in this question.
where I'm using:
HubConnectionBuilder()
in my WPF client app (.NetFramework 4.7). To do this, it seems to me I need to add a reference to:
Microsoft.AspNetCore.SignalR.Client
in my WPF app.
However, I'm getting this error when I try to build:
System.IO.FileNotFoundException: Could not load file or assembly 'System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
Am I including the right package for WPF? Or should I be trying to solve the missing file issue? If the latter, how to I get the right file into my build?