You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
482 B

1 year ago
1 year ago
  1. namespace CircleViewerMaui;
  2. public partial class App : Application
  3. {
  4. private string syncFusionLicenseKey = "MTg3MzUyM0AzMjMxMmUzMTJlMzQzMVhOUDNaUUxSMUExWTB3a1EzK294VjhKcGh3eENlanRIdXR2aWVrSGZUVTg9";
  5. public App()
  6. {
  7. string[] args = Environment.GetCommandLineArgs();
  8. //Register SyncFusion license
  9. Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(syncFusionLicenseKey);
  10. InitializeComponent();
  11. MainPage = new AppShell();
  12. }
  13. }