Show / Hide Table of Contents

Getting Started

To use the SDK for C# .NET, you must have:

  • A suitable .NET Environment
  • A Language Weaver or Language Weaver Edge account
  • API credentials

.NET Development Environment

The .NET SDK requires .NET 6.0 or higher. You can download the latest .NET software from https://dotnet.microsoft.com/en-us/download/dotnet.

Include SDK in your Project

If you use NuGet, you can specify the SDK as package reference in your project. For this, the following XML node must be added into the project file:

<PackageReference Include="LanguageWeaver.Sdk" Version=${lw-sdk.version} />

If you want to add the SDK to your project using .NET CLI, the following command must be run:

dotnet add package LanguageWeaver.Sdk --version ${lw-sdk.version}

Where lw-sdk.version must be replaced with the latest SDK version from NuGet.

Download SDK

You can download the needed nupkg file from NuGet.

In This Page
Back to top