License Manager is a tool that allows developers to easily create software license files with a digital signature.
| Component | Package |
|---|---|
JereckNET.LicenseManager |
Install License Manager by searching for 'LicenseManager' in the NuGet package manager, or using the Package Manager Console:
PM > Install-Package JereckNET.LicenseManager
Download the latest release and unzip the file in your preferred directory.
See USAGE file.
The easiest way is to use a XML public key and XML payload :
License license = License.Load(@"Licenses\License1.lic");
bool status = license.Verify(Properties.Resources.LicensePublicKey);
if (status) {
LicenseData data = license.GetContentFromXML<LicenseData>();
// Do your own thing
}Additional use cases are available in the LicenseManager.Sample project.
License Manager is licensed under the MIT License - the details are at LICENSE.md
