Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.46 KB

add-library-to-project.md

File metadata and controls

36 lines (26 loc) · 1.46 KB
title description author ms.author ms.service ms.date ms.topic keywords
Add Azure Kinect library to your Visual Studio project
Learn how to add the Azure Kinect NuGet package to your Visual Studio Project.
jaygullapalli
jagullap
azure-kinect-developer-kit
06/26/2019
conceptual
kinect, azure, sensor, sdk, visual studio 2017, visual studio 2019, nuget

Add Azure Kinect library to your Visual Studio project

This article walks you through the process of adding Azure Kinect NuGet package to your Visual Studio Project.

Install Azure Kinect NuGet package

To install the Azure Kinect NuGet package:

  1. You can find detailed instructions for installing a NuGet package in Visual Studio in the Quickstart: Install and use a package in Visual Studio.
  2. To add the package, you can use Package Manager UI by right-clicking References and choosing Manage NuGet Packages from Solution Explorer.
  3. Choose nuget.org as the Package source, select Browse tab, and search for Microsoft.Azure.Kinect.Sensor.
  4. Select that package from the list and install.

Use Azure Kinect NuGet package

Once the package is added, add header file includes to the source code, such as:

  • #include <k4a/k4a.h>
  • #include <k4arecord/record.h>
  • #include <k4arecord/playback.h>

Next steps

[!div class="nextstepaction"] Now you are ready to build your first application