-
Notifications
You must be signed in to change notification settings - Fork 0
Install
Tristin Porter edited this page Jan 9, 2026
·
1 revision
The CDTk NuGet is a complete NuGet wrapper over CDTk. This guide explains how to install CDTk via NuGet or use it manually by copying the file directly into your project.
- Open your project in Visual Studio.
- Go to the Tools menu and select NuGet Package Manager > Manage NuGet Packages for Solution....
- Search for
CDTkin the NuGet Package Manager. - Select the package and click Install.
Alternatively, you can install the package via the Package Manager Console:
Install-Package CDTkYou can also install it using the .NET CLI:
dotnet add package CDTkIf you prefer not to use NuGet, you can manually include the source file in your project:
- Visit the CDTk repository and locate the
cdtk.csfile. - Download or copy the
cdtk.csfile. - Add the file to your project folder.
- In your project, right-click on your solution and select Add > Existing Item....
- Navigate to the location of the
cdtk.csfile and add it to your project.
Once installed, you can begin using the helper methods provided by CDTk immediately within your code. The library is designed to be lightweight and unobtrusive, allowing easy integration into your project.
- Learn: Learn to use CDTk.