Tekniq mark
Tekniq SDK Docs

Installation

Add TekniqSDK.dll to your project and verify the setup

Reference the SDK Add TekniqSDK.dll to your project and verify the setup
Audience: New developers Level: Basic Area: Setup

Installation

This page explains how to add the Tekniq SDK to your Visual Studio solution and verify that your project is ready for development.

1. Required files

  • TekniqSDK.dll
  • Your developer GUID
  • The signing tool from the external developer setup

2. Add the SDK reference

  1. Open your plugin project in Visual Studio.
  2. Right-click the project and choose Add Reference.
  3. Browse to TekniqSDK.dll.
  4. Add the reference and save the project.
using TekniqSDK;
using TekniqSDK.Licensing;

3. Verify the setup

Build the project and confirm that the assembly resolves correctly. Once the reference is working, continue with your first plugin and SDK initialization.

Continue to First Plugin