> For the complete documentation index, see [llms.txt](https://centr.gitbook.io/netcs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://centr.gitbook.io/netcs/getting-started/installing-the-c-csnet-library.md).

# Installing the C# CSNet Library

In order to utilize the C# Library you need to add the NuGet package to you project &#x20;

<https://www.nuget.org/packages/Centr.NetCS>

[Github Repository](https://github.com/akaitrade/Centre.NetCS)

{% tabs %}
{% tab title="Package Manager" %}

```bash
Install-Package Centr.CSNet -Version 2.0.0
```

{% endtab %}

{% tab title=".NET CLI" %}

```
dotnet add package Centr.CSNet --version 2.0.0
```

{% endtab %}

{% tab title="PackageReference" %}

```
<PackageReference Include="Centr.CSNet" Version="2.0.0" />
```

{% endtab %}

{% tab title="Paket CLI" %}

```
paket add Centr.CSNet --version 2.0.0
```

{% endtab %}

{% tab title="Script & Interactive" %}

```
#r "nuget: Centr.CSNet, 2.0.0"
```

{% endtab %}

{% tab title="Cake" %}

```
// Install Centr.CSNet as a Cake Addin
#addin nuget:?package=Centr.CSNet&version=2.0.0

// Install SauceControl.Blake2Fast as a Cake Tool
#tool nuget:?package=Centr.CSNet&version=2.0.0
```

{% endtab %}
{% endtabs %}
