Skip to main content
Version: 4.0.0

Installing

On this session we will learn how to install Netly in your project.

Package Manager

  • Nuget Netly On Nuget (website)

    .NET CLI (Terminal)
    dotnet add package Netly --version 4.0.0
    Package Manager (Visual Studio)
    NuGet\Install-Package Netly -Version 4.0.0


Build Netly from source code (dll's)

  • Dependencies

  • Build Steps

    # clone Netly repo or download
    git clone https://github.com/Netly/Netly Netly

    # enter in Netly folder
    cd Netly

    # build Netly project
    dotnet build -o bin

    # enter in bin folder (contain Netly.dll and Byter.dll)
    cd bin/


    # you should see Netly.dll and Byter.dll
    ls; dir; # use ls or dir on windows when standard CMD environment
    warning

    When using Netly in your project, please note that it requires Byter.dll or the source code (Byter source code in GitHub). Make sure to include Byter in your project to avoid build errors.

    Byter.dll is automatically included when you download Netly from the Unity Asset Store or NuGet. If you're building Netly manually, Byter.dll will be generated in the same directory as Netly.dll.