# SDK Installation - .NET

Welcome to the **TRADE .NET SDKs**! These libraries are designed to help developers easily integrate LSports' powerful sports data services into their .NET applications.

You can find all available packages under our [NuGet profile](https://www.nuget.org/profiles/lsportsltd).

### Installation <a href="#installation" id="installation"></a>

You can install the SDK using the **NuGet Package Manager**, **.NET CLI**, or by editing your `.csproj` file.

#### **Option 1: Using NuGet Package Manager in Visual Studio**

1. Open your project in **Visual Studio**
2. Right-click on your project > **Manage NuGet Packages**
3. Search for your desired SDK (e.g., `Trade360SDK`)
4. Click **Install**

#### **Option 2: Using .NET CLI**

`dotnet add package Trade360SDK.<PackageName>`

For example:

dotnet add package Trade360SDK.Common

{% hint style="info" %}
Replace `Trade360SDK` with the exact name of the package you want to use. You can find all available packages on our [NuGet profile](https://www.nuget.org/profiles/lsportsltd).
{% endhint %}

#### **Option 3: Edit your `.csproj` file directly**

```
<ItemGroup>
	<PackageReference Include="Trade360SDK" Version="PUT_LATEST_VERSION_HERE" />
</ItemGroup>
```

* For interaction with the Feed of Trade you will need the following nuget packages:

```
<PackageReference Include="Trade360SDK.Common" Version="V.V.V" />
<PackageReference Include="Trade360SDK.Feed" Version="V.V.V" />
<PackageReference Include="Trade360SDK.Feed.RabbitMQ" Version="V.V.V" />
<PackageReference Include="Trade360SDK.Microsoft.DependencyInjection" Version="V.V.V" />
```

* For interaction with the Trade360 CustomersApi you will need:

```
<PackageReference Include="Trade360SDK.CustomersApi" Version="V.V.V" />
<PackageReference Include="Trade360SDK.Microsoft.DependencyInjection" Version="V.V.V" />
```

* For interaction with the Trade360 SnapshotApi you will need:

```
<PackageReference Include="Trade360SDK.Microsoft.DependencyInjection" Version="V.V.V" />
<PackageReference Include="Trade360SDK.SnapshotApi" Version="V.V.V" />
```

### Documentation <a href="#documentation" id="documentation"></a>

* You can find the ReadMe file [here](https://github.com/lsportsltd/trade360-dotnet-sdk/tree/main).
* API Reference and usage examples are available in the [SDK's git repository](https://github.com/lsportsltd/trade360-dotnet-sdk/tree/main/sdk.samples).
* For detailed integration assistance, please contact our support team or refer to our developer portal.
