Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计异常

syncfusion-maui-licensing同步融合毛伊岛许可

Agent Skill

syncfusion-maui-licensing 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

744

周安装

31

GitHub Stars

54

下载量

248
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-maui-licensing(同步融合毛伊岛许可)
来源仓库:https://github.com/syncfusion/maui-ui-components-skills
仓库路径:skills/syncfusion-maui-licensing
安装命令:
npx skills add https://github.com/syncfusion/maui-ui-components-skills --skill syncfusion-maui-licensing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/maui-ui-components-skills --skill syncfusion-maui-licensing

简介

同步融合毛伊岛许可管理组件,用于软件授权与许可证验证。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的开发环境与合规检查。
  • 从 GitHub 仓库获取并安装,采用标准技能管理机制。
  • 涉及商业授权时应严格遵循 Syncfusion 许可协议条款。
  • syncfusion-maui-licensing 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Licensing for Syncfusion.NET MAUI

Comprehensive guide for managing Syncfusion.NET MAUI licenses, from generation to registration and troubleshooting.

When to Use This Skill

Use this skill immediately when you encounter:

Licensing Errors:

  • "This application was built using a trial version" message
  • "The included Syncfusion license key is invalid" error
  • License validation failures
  • Platform mismatch errors
  • Version mismatch errors
  • Trial expired messages

License Key Tasks:

  • Generating license keys from Syncfusion account
  • Registering license keys in applications
  • Understanding trial vs licensed installations
  • Differentiating unlock key from license key
  • Configuring licensing for build servers
  • Setting up CI/CD license validation

Common Scenarios:

  • Initial app setup with Syncfusion components
  • Resolving license warnings during development
  • Deploying applications with proper licensing
  • Upgrading from trial to licensed version
  • Managing licenses for multiple projects
  • Troubleshooting "Could not load Syncfusion.Licensing.dll" errors

Licensing System Overview

Starting with version 20.2.0.x, Syncfusion introduced a new licensing system that applies to:

  • NuGet packages from nuget.org
  • Evaluation installers
  • Trial licenses

Key Points:

  • License keys are version and platform specific
  • Registration is required for NuGet packages and trial installers
  • Licensed installers do NOT require license key registration
  • License validation is offline (no internet required)
  • License keys are different from installer unlock keys

Documentation and Navigation Guide

Understanding Licensing

When to Read: First-time setup, understanding licensing requirements, or clarifying trial vs licensed installations.

📄 Read: references/licensing-overview.md

  • Licensing system introduction (v20.2.0.x changes)
  • When license key registration is required
  • Trial vs licensed installation differences
  • Unlock key vs license key distinction
  • Build server licensing scenarios
  • NuGet package licensing requirements
  • Version and platform specificity

Generating License Keys

When to Read: Need to obtain a new license key, working with trial licenses, or managing license for different versions/platforms.

📄 Read: references/license-generation.md

  • Accessing License & Downloads section
  • Accessing Trial & Downloads section
  • Using Claim License Key feature
  • Generating keys for active licenses
  • Generating keys for active trials
  • Handling expired licenses (temporary 5-day keys)
  • Setting up accounts for NuGet.org users
  • Platform and version-specific key generation

Registering License Keys

When to Read: Need to register a license key in your application, choosing registration location, or implementing proper licensing.

📄 Read: references/license-registration.md

  • RegisterLicense() method syntax
  • Registration in App.xaml.cs constructor
  • Registration in MauiProgram.cs
  • Syncfusion.Licensing.dll reference requirements
  • Best practices for registration location
  • Multiple registration scenarios
  • Complete code examples for each approach

Troubleshooting Licensing Errors

When to Read: Encountering license validation errors, trial expiration messages, platform/version mismatches, or assembly loading issues.

📄 Read: references/licensing-errors.md

  • License key not registered error
  • Invalid key error messages
  • Trial expired errors
  • Platform mismatch errors
  • Version mismatch errors
  • "Could not load Syncfusion.Licensing.dll" issues
  • Solutions for each error type
  • Version-specific error variations
  • Copy Local configuration for assemblies

Advanced Topics and FAQ

When to Read: Setting up CI/CD pipelines, programmatic license validation, offline deployment questions, or upgrading from trial.

📄 Read: references/licensing-faq.md

  • CI/CD license validation (Azure Pipelines, GitHub Actions, Jenkins)
  • ValidateLicense() method for programmatic checks
  • Unit testing with license validation
  • Internet connection requirements (offline validation)
  • Upgrading from trial to licensed version
  • NuGet.org user account registration
  • Where to obtain license keys
  • Common frequently asked questions

Quick Start Guide

Step 1: Generate License Key

  1. Log in to your Syncfusion account
  2. Navigate to License & Downloads (licensed) or Trial & Downloads (trial)
  3. Generate a license key for .NET MAUI platform and your specific version
  4. Copy the generated license key

Step 2: Register License Key

Choose one of these registration methods:

Option A: Register in App.xaml.cs

public App()
{
    // Register Syncfusion license
    string licenseKey = Environment.GetEnvironmentVariable("SYNCFUSION_LICENSE_KEY");
    if (!string.IsNullOrEmpty(licenseKey))
    {
        Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(licenseKey);
    }

    InitializeComponent();

    MainPage = new AppShell();
}

Option B: Register in MauiProgram.cs

public static class MauiProgram
{
    public static MauiApp CreateMauiApp()
    {
        // Register the Syncfusion license key
       string licenseKey = Environment.GetEnvironmentVariable("SYNCFUSION_LICENSE_KEY");
        if (!string.IsNullOrEmpty(licenseKey))
        {
            Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(licenseKey);
        }

        var builder = MauiApp.CreateBuilder();
        builder
            .UseMauiApp<App>()
            .ConfigureSyncfusionCore()
            .ConfigureFonts(fonts =>
            {
                fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
            });

        return builder.Build();
    }
}

Step 3: Verify Registration

Run your application. If properly registered, you should NOT see any licensing warning messages.

Common Patterns

Pattern 1: Initial Setup for New Projects

Scenario: Starting a new.NET MAUI project with Syncfusion components from NuGet.

Steps:

  1. Install Syncfusion NuGet packages
  2. Generate license key for MAUI platform + your version
  3. Register license key in MauiProgram.cs before ConfigureSyncfusionCore()
  4. Ensure Syncfusion.Licensing package is installed
  5. Build and run to verify no licensing warnings

Pattern 2: Resolving "Trial Version" Warning

Scenario: Application shows "This application was built using a trial version" message.

Solution:

  1. Verify you have a valid license key (not expired)
  2. Check the license key is for correct platform (MAUI)
  3. Check the license key version matches your package version
  4. Register the license key before InitializeComponent() or before ConfigureSyncfusionCore()
  5. Clean and rebuild the application

Pattern 3: Version Mismatch Error

Scenario: Error message shows "included Syncfusion license ({Registered Version}) is invalid for version {Required version}"

Solution:

  1. Check your NuGet package versions (all should be same version)
  2. Generate new license key for the exact version you're using
  3. Replace old license key with new one
  4. Clean solution and rebuild

Pattern 4: Build Server / CI/CD Setup

Scenario: Need to validate licensing during continuous integration.

Approaches:

  • Use LicenseKeyValidator utility in CI pipeline
  • Implement ValidateLicense() method with unit tests
  • Configure environment variables for license key
  • Fail build if validation fails

Read: references/licensing-faq.md for detailed CI/CD setup instructions.

Pattern 5: Multiple Projects in Solution

Scenario: Solution has multiple MAUI projects using Syncfusion components.

Solution:

  1. Register license key in each project's App.xaml.cs or MauiProgram.cs
  2. Use same license key across all projects (if same version)
  3. Ensure all projects reference Syncfusion.Licensing.dll
  4. Consider using shared constant for license key string

Key Concepts

License Key vs Unlock Key

  • Unlock Key: Used to unlock the Syncfusion installer during installation
  • License Key: Required in your application code when using NuGet packages or trial installer
  • These are different keys with different purposes

Version and Platform Specificity

License keys are tied to:

  • Platform: MAUI, WPF, Blazor, etc. (use MAUI license for MAUI apps)
  • Version: Major.Minor.Patch (e.g., 26.2.4)

A MAUI 26.2.4 license key will NOT work for:

  • Different platform (e.g., Blazor)
  • Different version (e.g., 26.1.0 or 27.0.0)

When License Registration is Required

Required:

  • NuGet packages from nuget.org
  • Trial installer assemblies
  • Evaluation scenarios

NOT Required:

  • Licensed installer assemblies (license embedded in assemblies)

Offline Validation

  • License validation happens offline during application execution
  • No internet connection required for validation
  • Apps can be deployed to systems without internet access

Common Use Cases

Use Case 1: First-Time Developer Setup

User: "I just installed Syncfusion MAUI components from NuGet and I'm getting a trial license warning."

Solution:

  1. Read references/licensing-overview.md to understand licensing requirements
  2. Read references/license-generation.md to generate appropriate key
  3. Read references/license-registration.md to register in your app

Use Case 2: Deployment Issues

User: "My app works fine in development but shows licensing errors when deployed."

Solution:

  1. Verify Syncfusion.Licensing.dll is included in deployment
  2. Check Copy Local is set to True for Syncfusion assemblies
  3. Read references/licensing-errors.md for "Could not load" troubleshooting

Use Case 3: Trial to Licensed Upgrade

User: "I purchased a license, how do I remove the trial warning?"

Solution:

  1. Read references/licensing-faq.md - "Upgrading from Trial" section
  2. Generate new licensed key (not trial key)
  3. Replace trial key with licensed key in RegisterLicense() call
  4. Clean and rebuild application

Use Case 4: CI/CD Integration

User: "How do I validate licensing in Azure DevOps pipeline?"

Solution: Read references/licensing-faq.md for complete CI/CD setup including:

  • Azure Pipelines (YAML and Classic)
  • GitHub Actions
  • Jenkins
  • Unit test approach with ValidateLicense()

Important Notes

  • Always register license key before InitializeComponent() in App.xaml.cs or before ConfigureSyncfusionCore() in MauiProgram.cs
  • Keep license keys secure (don't commit to public repositories)
  • Use the same license key for all Syncfusion packages in your project
  • Ensure all Syncfusion packages are the same version
  • License validation errors are shown at runtime, not compile time

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.11%
按下载量换算87

Claude

32.73%
按下载量换算81

Cursor

20.28%
按下载量换算50

Gemini CLI

9.19%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills