I want to create a music fingerprinting program for windows with C# using the gnsdk .The problem is that even though in the documentation it talks about initialization and all the methods I can't find how to actually import the sdk to start using all these functions. I am relatively new to programming so please be kind thanks!
Asked
Active
Viewed 153 times
1 Answers
0
You can work with the Gracenote C# Web API Library by adding it to your project via NuGet.
You can do this in the Package Manager UI within Visual Studio
Project → Manage NuGet Packages
Choose "nuget.org" as the Package source (top-right)
Select the Browse tab
- Search for ParkSquare.GraceNote
- Select that package in the list
- Click Install.
Now you can work with GraceNote
using ParkSquare.GraceNote;
More information on alternative ways to use NuGet packages and how they work here:
Quickstart: Install and use a package in Visual Studio
But what if I don't want to use NuGet?
Okay, each to their own I guess.
Download the Class Library (.dll) files for ParkSquare GraceNote
Navigate to the Solution Explorer window in Visual Studio
Under the current Project → Right-click the References item
Click Add Reference and Browse to the files
Nice and simple. I hope that helps anyone reading this.

aaronedmistone
- 929
- 10
- 17