How to install a Hidsharp Nuget in Visual Studio

Asked

Viewed 64 times

0

I need to communicate between WPF I’m creating and a door USB which receives data from a hardware. Reading on, I saw that a library called Hidsharp that would be a Nuget to make this communication, but I’m not sure what a Nuget nor how to install it. I found a .sln demo on Github. This solution comes with two .Cs Program.cs and HIDInterface.cs. I wonder if anyone has ever done this kind of communication and how do I install it within my project.

1 answer

1


In Visual Studio goes to Tools > Nuget Package Manager > Manage Nuget Packages for Solution, in the new window you can go to Browse and search the library Hidsharp

or

Tools > Nuget Package Manager > Package Manager Console and put Install-Package Hidsharp -Version 1.5.0.

With this he will install the library in your project.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.