Skip to main content

Installing the Nexudus SDK

The Nexudus SDK is distributed as a NuGet package. Add it to any .NET project targeting .NET 10 or later. A .NET Framework 4.8 version is also available as a separate package: Nexudus.Sdk.Framework.

Prerequisites

  • .NET 10 SDK or later — Download .NET
  • A Nexudus account with API access

Install via the .NET CLI

dotnet add package Nexudus.Sdk

Install via NuGet Package Manager

Install-Package Nexudus.Sdk

.NET Framework 4.8

If your project targets .NET Framework 4.8, install the Nexudus.Sdk.Framework package instead:
dotnet add package Nexudus.Sdk.Framework
Install-Package Nexudus.Sdk.Framework

Verify the installation

Create a simple console app to confirm everything is working:
dotnet new console -n NexudusTest
cd NexudusTest
dotnet add package Nexudus.Sdk
Open Program.cs and add:
using Nexudus.Sdk;
Console.WriteLine("Nexudus SDK loaded successfully.");
Run it:
dotnet run
If you see the success message, you’re ready to use the SDK.

Next steps

Client setup

Configure authentication and client options.