> For the complete documentation index, see [llms.txt](https://docs.licensespring.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.licensespring.com/sdks/tutorials/getting-started/.net-c/_net-sdk-installation.md).

# \_NET SDK Installation

You may add the LicenseSpring .NET SDK to your project via NuGet or download the SDK here: [**.NET/C# SDK**](broken://pages/86cecc7cdbff456216d469adc2cef0d14883899a)

The supported versions are:

* .NET: net5.0, net6.0, net7.0
* .NET Standard: netstandard2.0, netstandard2.1
* .NET Framework: 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

### NuGet Package

[**https://www.nuget.org/packages/LicenseSpring.NetSDK**](https://www.nuget.org/packages/LicenseSpring.NetSDK)

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

```bash
dotnet add package LicenseSpring.NetSDK --version 7.21.0
```

{% endtab %}

{% tab title="Package Manager (NuGet)" %}

```powershell
NuGet\Install-Package LicenseSpring.NetSDK -Version 7.21.0
```

{% endtab %}

{% tab title="PackageReference" %}

```xml
<PackageReference Include="LicenseSpring.NetSDK" Version="7.21.0" />
```

{% endtab %}

{% tab title="Paket CLI" %}

```bash
paket add LicenseSpring.NetSDK --version 7.21.0
```

{% endtab %}

{% tab title="#r (script)" %}

```none
#r "nuget: LicenseSpring.NetSDK, 7.21.0"
```

{% endtab %}
{% endtabs %}

![NuGet Package Manager](/files/9592ad2df7f3dcfffe55e371574c4db222b763fa)

### Package Content

![.NET Package Contents](/files/a929e65a92c48bf2c970bc35a796aa09ce3fb784)

After downloading and unzipping the archive, you will find the following items in the LicenseSpring folder:

bin folder:

* SDK: .NET versions 3.5; 4.0; 4.5; 4.5.1; 4.5.2; 4.6; 4.6.1; 4.6.2; 4.7; 4.7.1; 4.7.2; 4.8; 5.0; 6.0; 7.0; .NET Standard 2.0, .NET Standard 2.1, Xamarin.Forms

documentation folder:

* A full reference of SDK classes through Doxygen.

samples folder:

* Code samples for multiple scenarios, including: air-gapped, console, NetCore, WinForm, VB.Net and VBA, cross-platform, Xamarin.Forms, single-sign-on, and web.

Release notes showing changelogs of all recent updates made to the SDK.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.licensespring.com/sdks/tutorials/getting-started/.net-c/_net-sdk-installation.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
