Skip to content

Latest commit

 

History

History
62 lines (47 loc) · 2.05 KB

license_key_configuration.md

File metadata and controls

62 lines (47 loc) · 2.05 KB
icon
shield-check

License Key Configuration

A Mojee license key can be purchased online at mojee.io/pricing.

A license key is required to unlock all 1743 emojis supported by Mojee. Without a License Key, only the 100 most popular emoji's are supported. See licensing for more details.

Once a license key has been purchased, you will be sent an email with a key included. To add the license key to your Mojee project, two easy steps are required:

:::danger Please protect your license key Please do not commit your Mojee license key to a public source code repository or share anywhere outside of your organization. It is your responsibility to protect your license key. :::

Steps to unlock Mojee

1️⃣ Set license key

In your project root, at the same level as the .csproj file, do you have an appsettings.json file? If no, please create that file, then add the following Mojee configuration section. Replace your-license-key-here with your actual license key string.

{
    "Mojee": {
        "LicenseKey": "your-license-key-here"
    }
}

If your project already has an appsettings.json file, the final content might look something like the following:

{
    "Logging": {
        "LogLevel": {
            "Default": "Information",
            "Microsoft": "Warning",
            "Microsoft.Hosting.Lifetime": "Information"
        }
    },
    "AllowedHosts": "*",
    "Mojee": {
        "LicenseKey": "your-license-key-here"
    }
}

2️⃣ Copy to output directory

Within your projects .csproj file, add the following section inside the <Project> node:

<ItemGroup>
    <None Update="appsettings.json">
        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
</ItemGroup>

The above section instructs the build process to copy the appsettings.json to your /bin folder during compilation. Your appsettings.json file should be deployed along side your projects compiled .dll files.

Mojee is now unlocked and ready for the world.