GoesSoftware.SuperSDK.License
6.4.0
See the version list below for details.
dotnet add package GoesSoftware.SuperSDK.License --version 6.4.0
NuGet\Install-Package GoesSoftware.SuperSDK.License -Version 6.4.0
<PackageReference Include="GoesSoftware.SuperSDK.License" Version="6.4.0" />
<PackageVersion Include="GoesSoftware.SuperSDK.License" Version="6.4.0" />
<PackageReference Include="GoesSoftware.SuperSDK.License" />
paket add GoesSoftware.SuperSDK.License --version 6.4.0
#r "nuget: GoesSoftware.SuperSDK.License, 6.4.0"
#:package GoesSoftware.SuperSDK.License@6.4.0
#addin nuget:?package=GoesSoftware.SuperSDK.License&version=6.4.0
#tool nuget:?package=GoesSoftware.SuperSDK.License&version=6.4.0
SuperSDK.License
License verification library for SuperSDK applications.
Installation
dotnet add package SuperSDK.License
Usage Examples
Basic License Validation
using SuperSDK.License;
// Validate license file (default: SuperSDK.lic in application directory)
if (!LicenseManager.ValidateLicense())
{
Console.WriteLine("License validation failed!");
return;
}
Console.WriteLine("License is valid!");
Get License Information
var info = LicenseManager.GetLicenseInfo();
if (info != null)
{
Console.WriteLine($"Customer: {info.Customer}");
Console.WriteLine($"Type: {info.Type}");
Console.WriteLine($"Expiration: {info.ExpirationDate:yyyy-MM-dd}");
Console.WriteLine($"Perpetual: {info.IsPerpetual}");
}
Generate Machine Information File
// Generate encrypted MCI file for license request
string mciPath = HardwareSignature.GenerateMciFile();
Console.WriteLine($"Machine info file created: {mciPath}");
// Get machine ID for license binding
string machineId = HardwareSignature.GetMachineId();
Console.WriteLine($"Machine ID: {machineId}");
| Product | Versions 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net9.0
- NSec.Cryptography (>= 24.8.0)
- System.Management (>= 9.0.0)
NuGet packages (9)
Showing the top 5 NuGet packages that depend on GoesSoftware.SuperSDK.License:
| Package | Downloads |
|---|---|
|
GoesSoftware.SuperSDK.Core
Core utilities and messaging system for Goes applications - zero UI dependencies |
|
|
GoesSoftware.SuperSDK.Data
数据访问层 - 基于 Entity Framework Core 和 SQLite/SQLCipher 的数据持久化 |
|
|
GoesSoftware.SuperSDK.UI
Avalonia UI 通用组件库 - 通知管理、对话框、ViewModelBase 等 |
|
|
GoesSoftware.SuperSDK.App
Application foundation framework for Avalonia-based Goes applications |
|
|
GoesSoftware.SuperSDK.Driver
A powerful C# library for instrument communication with comprehensive DLL integrity validation and license protection |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 7.16.2 | 184 | 4/14/2026 |
| 7.16.0 | 234 | 4/13/2026 |
| 7.15.10 | 224 | 4/13/2026 |
| 7.15.6 | 228 | 4/13/2026 |
| 7.15.5 | 233 | 4/12/2026 |
| 7.15.1 | 225 | 4/12/2026 |
| 7.15.0 | 219 | 4/12/2026 |
| 7.14.12 | 229 | 4/12/2026 |
| 7.14.11 | 271 | 4/12/2026 |
| 7.14.9 | 179 | 4/12/2026 |
| 7.14.8 | 234 | 4/12/2026 |
| 7.14.7 | 228 | 4/12/2026 |
| 7.14.6 | 219 | 4/12/2026 |
| 7.14.5 | 226 | 4/12/2026 |
| 7.14.3 | 232 | 4/11/2026 |
| 7.14.2 | 234 | 4/11/2026 |
| 7.14.0 | 226 | 4/10/2026 |
| 7.13.0 | 208 | 4/10/2026 |
| 7.12.0 | 219 | 4/10/2026 |
| 6.4.0 | 194 | 3/30/2026 |
add clean up process for superApp