using your licence - Envivo-Software/Envivo.Fresnel GitHub Wiki

Using your licence

After you've received your licence, add it via the application's bootstrapper code:

...

builder.AddFresnel(opt =>
{
    opt
    .WithLicence(CustomLicenceText) //👈
    ...
    ;
});

string CustomLicenceText = @"<paste your licence content here>"; //👈

You may read the licence contents from a file, embedded resource, or from a server.