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
- Open your solution in Visual Studio.
- Right-click on the project where you want to add the package and select Manage NuGet Packages.
- In the NuGet Package Manager window, go to the Browse tab.
- Search for
DealCloudSDK. - Select the package and click Install.
- Once installed, the package will be referenced in your project.
Option 2: Using the .NET CLI
-
Open a terminal in the root of your project directory.
-
Run the following command to install
DealCloudSDK:dotnet add package DealCloudSDK -
This command will automatically download and add the
DealCloudSDKpackage 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 DealCloudSDKAfter installing the package, you'll be able to reference it in your code like this:
using DealCloudSDK;