如何在UWP JavaScript应用程序中使用MQTTnet?

我有一个JavaScript UWP应用程序,我需要使用MQTT库与我的设备进行通信。

我selectMQTTnet库是因为它根据描述支持通用Windows平台(UWP)10.0.10240+(x86,x64,ARM,AnyCPU)

当我安装NuGet包的时候,它下载了很多依赖关系,并且在这一步失败:

Install failed. Rolling back... Package 'Microsoft.NETCore.Jit.1.0.3' does not exist in project 'StreamSocket' 

StreamSocket是我基于Windows通用样本集合项目的testing项目。

我试图在同一个解决scheme中创build一个RuntimeComponent项目,在那里添加了对MQTTnet的NuGet引用。 我从StreamSocket项目中添加了对这个项目的引用。

我现在可以build立项目,但现在我得到了运行时错误:

 0x80070002 - JavaScript runtime error: The system cannot find the file specified. System.IO.FileNotFoundException: Could not load file or assembly 'MQTTnet.Core, Version=2.5.1.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. 

我错过了什么?