Installation

Installation

To install the DealCloudSDK NuGet package in your C# project, follow one of these methods:

Option 1: Using Visual Studio's NuGet Package Manager

  1. Open your solution in Visual Studio.
  2. Right-click on the project where you want to add the package and select Manage NuGet Packages.
  3. In the NuGet Package Manager window, go to the Browse tab.
  4. Search for DealCloudSDK.
  5. Select the package and click Install.
  6. Once installed, the package will be referenced in your project.

Option 2: Using the .NET CLI

  1. Open a terminal in the root of your project directory.

  2. Run the following command to install DealCloudSDK:

    dotnet add package DealCloudSDK
  3. This command will automatically download and add the DealCloudSDK package to your project’s dependencies.

Option 3: Using NuGet CLI (if installed)

If you have the NuGet CLI installed, run the following command in the project folder:

nuget install DealCloudSDK

After installing the package, you'll be able to reference it in your code like this:

using DealCloudSDK;