VOOZH about

URL: https://www.nuget.org/packages/GoesSoftware.SuperSDK.License/

⇱ NuGet Gallery | GoesSoftware.SuperSDK.License 7.23.7




👁 Image
GoesSoftware.SuperSDK.License 7.23.7

dotnet add package GoesSoftware.SuperSDK.License --version 7.23.7
 
 
NuGet\Install-Package GoesSoftware.SuperSDK.License -Version 7.23.7
 
 
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="GoesSoftware.SuperSDK.License" Version="7.23.7" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GoesSoftware.SuperSDK.License" Version="7.23.7" />
 
Directory.Packages.props
<PackageReference Include="GoesSoftware.SuperSDK.License" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GoesSoftware.SuperSDK.License --version 7.23.7
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: GoesSoftware.SuperSDK.License, 7.23.7"
 
 
#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.
#:package GoesSoftware.SuperSDK.License@7.23.7
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=GoesSoftware.SuperSDK.License&version=7.23.7
 
Install as a Cake Addin
#tool nuget:?package=GoesSoftware.SuperSDK.License&version=7.23.7
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (11)

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.23.7 310 5/22/2026
7.23.6 311 5/22/2026
7.23.5 309 5/13/2026
7.23.4 317 5/13/2026
7.23.3 309 5/13/2026
7.23.2 319 5/13/2026
7.23.1 320 5/12/2026
7.23.0 315 5/12/2026
7.21.0 317 5/12/2026
7.20.0 306 5/12/2026
7.19.1 324 5/11/2026
7.19.0 312 5/11/2026
7.18.0 280 4/30/2026
7.17.0 305 4/29/2026
7.16.2 271 4/14/2026
7.16.0 261 4/13/2026
7.15.10 253 4/13/2026
7.15.6 256 4/13/2026
7.15.5 257 4/12/2026
7.15.1 250 4/12/2026
Loading failed

docs(gotest-agent): add Profile file naming rule to engineer prompt