# 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lsports.eu/u/trade/integration/sdk/sdk-installation-guide-.net.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
