SDK Installation Guide .NET

Welcome to the TRADE360 .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.

Installation

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.

For example:

dotnet add package Trade360SDK.Common

ReplaceTrade360SDK with the exact name of the package you want to use. You can find all available packages on our NuGet profile.

Option 3: Edit your .csproj file directly

<ItemGroup>
	<PackageReference Include="Trade360SDK" Version="PUT_LATEST_VERSION_HERE" />
</ItemGroup>
  • For interaction with the Feed of Trade360 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

  • You can find the ReadMe file here.

  • API Reference and usage examples are available in the SDK's git repository.

  • For detailed integration assistance, please contact our support team or refer to our developer portal.

Last updated

Was this helpful?