LicenseManager_12noon.Client 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package LicenseManager_12noon.Client --version 2.0.0                
NuGet\Install-Package LicenseManager_12noon.Client -Version 2.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LicenseManager_12noon.Client" Version="2.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LicenseManager_12noon.Client --version 2.0.0                
#r "nuget: LicenseManager_12noon.Client, 2.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LicenseManager_12noon.Client as a Cake Addin
#addin nuget:?package=LicenseManager_12noon.Client&version=2.0.0

// Install LicenseManager_12noon.Client as a Cake Tool
#tool nuget:?package=LicenseManager_12noon.Client&version=2.0.0                

License Manager by 12noon LLC

alternate text is missing from this package README image build GitHub last commit

This is a graphical front-end for the Standard.Licensing project.

License Manager

Description

License Manager is a graphical front-end application designed to create and manage licenses for software applications using .NET. It leverages the Standard.Licensing project to handle license generation and validation.

This project ensures that software licenses are securely generated and validated, providing a robust mechanism for software protection.

Features

Key Management

Property Usage
Passphrase Secret used to generate public/private keypair and to create a license
Public key Used by the licensed application to validate the license
ID License ID (You can use it any way you want or not at all)
Product ID Used by the licensed application to verify the executable and public key.
Lock to assembly This ensures the license is associated ONLY with THIS build of the licensed application.

The application maintains the private key in the .private file but does not display it.

Product

Property Usage
Name The product name
Version The product version
Date published The date the product was published

These values can be displayed by the licensed application.

The publish date can represent any date you want.

License

Property Usage
Type Standard or trial license
Expiration Date The date on which the license expires. DateTime.MaxDate.Date means no expiry.
Expiration The number of days until the license expires. Zero means no expiry.
Quantity Minimum value is one (1)

The licensed application can check the type to permit only certain features.

If the expiration is set to zero, there is no expiry.

The quantity is not enforced.

Licensee

This information can be displayed by the licensed application.

Property Usage
Name Name of the licensee
Email Email of the licensee
Company Company of the licensee (optional)

Usage

Create a New License

Note that the public key and product ID are passed by the licensed application to validate the license, so you only want to create a new keypair or change the product ID if you want to change them in the licensed application, rebuild it, and create new licenses for anyone who will use the new build.

  1. Create a keypair by entering a value for Passphrase and pressing Create Keypair button.
  2. Enter a Product ID.
  3. Optionally, lock the license to a specific build of the licensed application.
  4. Fill in the product information, license information, and licensee information.
  5. Press the Save Keypair... button. This will prompt you for where to save the .private file.
  6. Press the Save License... button. This will prompt you for where to save the .lic file.

The .private file contains all of the information used to create the license, including the secrets. Do keep the .private file somewhere safe. Do NOT add the .private file to source control. You will need it to create more licenses for your licensed application (unless you want to update the application to use a new public key).

Create a License Based on an Existing License

  1. Press the Load Keypair or License or Both... button to select a .private or .lic file (or both of them). Alternatively, you can drag/drop a .private and/or .lic file.
  2. After loading both files, License Manager will validate the license file.

If the license is invalid (e.g., it expired or the assembly has changed), you can create a new (valid) license.

  1. Now you can update the product, license, or licensee information as needed.
  2. Press the Save Keypair... button to save the keypair file. This will prompt you for where to save the .private file.
  3. Press the Save License... button to create a new license. This will prompt you for where to save the .lic file.

The Licensed Application

Install the LicenseManager_12noon.Client NuGet package in your application.

The licensed application must pass the Product ID and the Public Key to the license validation API.

const string PRODUCT_ID = "My Product ID";	// Copied from the License Manager application
const string PUBLIC_KEY = "The Public Key";	// Copied from the License Manager application
LicenseFile license = new();
bool isValid = license.IsLicenseValid(PRODUCT_ID, PUBLIC_KEY, out string messages);
if (!isValid)
{
	// INVALID
	MessageBox.Show("The license is invalid. " + messages);
	return;
}

// VALID
if (license.StandardOrTrial == LicenseType.Trial)
{
	// Example: LIMIT FEATURES FOR TRIAL
}

If the license is valid, you can use any of the properties (e.g., for display or to limit features).

Alternatively, you can use the Standard.Licensing NuGet package to validate the license in your application.

Note: Of course, the hash of Product ID and Public Key will not prevent a determined hacker from working around the license. However, it will prevent a simple text substitution of the public key.

You could also do something more involved, such as prompting the licensee the first time they run the application to enter some secret text (e.g., a password or GUID) and storing a hash of it and the public key in protected storage. Then the application could use the hash as the Product ID. Of course, the licensee would have to keep that text as secret as they should keep the license file.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.2 49 3/9/2025
2.1.1 54 3/9/2025
2.1.0 164 3/8/2025
2.0.2 163 3/7/2025
2.0.1 91 2/25/2025
2.0.0 106 2/21/2025