Getting Started

Versions: V10 V11 V12 V13

Installation

Rivlo Licensing can be installed from the NuGet package manager by looking for the package: Rivlo.Licensing

If you prefer using the console use:

dotnet add package Rivlo.FriendlyMembers

Versioning is linked to the supported Umbraco version. For Umbraco 10 install version 10.x.x or for Umbraco 13 use 13.x.x

Usage

For a basic implementation add the following in your Composer or Startup class:

builder.AddUmbLicensing(new LicenceOptions
 {
        ProductName = "MyPackageName",
        RelativeLicensePath = "App_Plugins/MyPackageName/licence.lic",
        PublicKeyPem = "
        -----BEGIN PUBLIC KEY-----
        ...your public key here...
        -----END PUBLIC KEY-----
        "
    });

You can specify the following options: