1. Home
  2. /
  3. GroupDocs.Conversion.LowCode
  4. /
  5. Getting Started
  6. /
  7. Installation

Installation

Note
When installing the package on Linux or macOS, please make sure to review the Linux and macOS Dependencies section.

Install the Package from NuGet

NuGet is the official package manager for the .NET ecosystem. The GroupDocs.Conversion.LowCode package is available on NuGet.org and can be easily added to your project using CLI or Visual Studio.

Installing the Package

You can install the package using one of the following methods:

dotnet add package GroupDocs.Conversion.LowCode
NuGet\Install-Package GroupDocs.Conversion.LowCode

This will automatically add a reference to the package in your project file.

Add a Reference Manually (Alternative)

If you prefer, you can manually add the package reference to your .csproj file:

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <Nullable>enable</Nullable>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="GroupDocs.Conversion.LowCode" />
  </ItemGroup>

</Project>

After adding the reference, restore packages with the following command:

dotnet restore

This ensures all dependencies are downloaded and ready for use in your project.