Skip to content

Commit 24d71a1

Browse files
committed
Added getting started samples for Blazor components
1 parent e55eb3c commit 24d71a1

File tree

470 files changed

+17632
-26
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

470 files changed

+17632
-26
lines changed

Accordion/BlazorServerApp/AccordionSample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
var builder = WebApplication.CreateBuilder(args);
77

88
// Add services to the container.
9-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NTczMjQwQDMxMzkyZTM0MmUzMGxqN2wrdVR1RlRFYnZtNTFIVldsV1Q1VkdONzFxRU5zZzlZOHJkNUR0SzA9");
9+
//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("your license key");
1010
builder.Services.AddRazorPages();
1111
builder.Services.AddServerSideBlazor();
1212
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });

Accordion/BlazorWASM/AccordionSample/Client/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
var builder = WebAssemblyHostBuilder.CreateDefault(args);
77
builder.RootComponents.Add<App>("#app");
88
builder.RootComponents.Add<HeadOutlet>("head::after");
9-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NTc0OTkyQDMxMzkyZTM0MmUzMGxqN2wrdVR1RlRFYnZtNTFIVldsV1Q1VkdONzFxRU5zZzlZOHJkNUR0SzA9");
9+
//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("your license key");
1010

1111
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
1212
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });

Accumulation Chart/BlazorServerApp/AccumulationChartSample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
var builder = WebApplication.CreateBuilder(args);
77

88
// Add services to the container.
9-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NTczMjQwQDMxMzkyZTM0MmUzMGxqN2wrdVR1RlRFYnZtNTFIVldsV1Q1VkdONzFxRU5zZzlZOHJkNUR0SzA9");
9+
//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("your license key");
1010
builder.Services.AddRazorPages();
1111
builder.Services.AddServerSideBlazor();
1212
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });

Accumulation Chart/BlazorWASM/AccumulationChartSample/Client/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
var builder = WebAssemblyHostBuilder.CreateDefault(args);
77
builder.RootComponents.Add<App>("#app");
88
builder.RootComponents.Add<HeadOutlet>("head::after");
9-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NTc0OTkyQDMxMzkyZTM0MmUzMGxqN2wrdVR1RlRFYnZtNTFIVldsV1Q1VkdONzFxRU5zZzlZOHJkNUR0SzA9");
9+
//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("your license key");
1010

1111
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
1212
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });

AutoComplete/BlazorServerApp/AutoCompleteSample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
var builder = WebApplication.CreateBuilder(args);
77

88
// Add services to the container.
9-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NTczMjQwQDMxMzkyZTM0MmUzMGxqN2wrdVR1RlRFYnZtNTFIVldsV1Q1VkdONzFxRU5zZzlZOHJkNUR0SzA9");
9+
//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("your license key");
1010
builder.Services.AddRazorPages();
1111
builder.Services.AddServerSideBlazor();
1212
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });

AutoComplete/BlazorWASM/AutoCompleteSample/Client/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
var builder = WebAssemblyHostBuilder.CreateDefault(args);
77
builder.RootComponents.Add<App>("#app");
88
builder.RootComponents.Add<HeadOutlet>("head::after");
9-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NTc0OTkyQDMxMzkyZTM0MmUzMGxqN2wrdVR1RlRFYnZtNTFIVldsV1Q1VkdONzFxRU5zZzlZOHJkNUR0SzA9");
9+
//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("your license key");
1010

1111
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
1212
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });

Badge/BlazorServerApp/BadgeSample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
var builder = WebApplication.CreateBuilder(args);
77

88
// Add services to the container.
9-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NTczMjQwQDMxMzkyZTM0MmUzMGxqN2wrdVR1RlRFYnZtNTFIVldsV1Q1VkdONzFxRU5zZzlZOHJkNUR0SzA9");
9+
//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("your license key");
1010
builder.Services.AddRazorPages();
1111
builder.Services.AddServerSideBlazor();
1212
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });

Badge/BlazorWASM/BadgeSample/Client/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
var builder = WebAssemblyHostBuilder.CreateDefault(args);
77
builder.RootComponents.Add<App>("#app");
88
builder.RootComponents.Add<HeadOutlet>("head::after");
9-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NTc0OTkyQDMxMzkyZTM0MmUzMGxqN2wrdVR1RlRFYnZtNTFIVldsV1Q1VkdONzFxRU5zZzlZOHJkNUR0SzA9");
9+
//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("your license key");
1010

1111
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
1212
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });

Barcode/BlazorServerApp/BarcodeSample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
var builder = WebApplication.CreateBuilder(args);
77

88
// Add services to the container.
9-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NTczMjQwQDMxMzkyZTM0MmUzMGxqN2wrdVR1RlRFYnZtNTFIVldsV1Q1VkdONzFxRU5zZzlZOHJkNUR0SzA9");
9+
//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("your license key");
1010
builder.Services.AddRazorPages();
1111
builder.Services.AddServerSideBlazor();
1212
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });

Barcode/BlazorWASM/BarcodeSample/Client/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
var builder = WebAssemblyHostBuilder.CreateDefault(args);
77
builder.RootComponents.Add<App>("#app");
88
builder.RootComponents.Add<HeadOutlet>("head::after");
9-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NTc0OTkyQDMxMzkyZTM0MmUzMGxqN2wrdVR1RlRFYnZtNTFIVldsV1Q1VkdONzFxRU5zZzlZOHJkNUR0SzA9");
9+
//Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("your license key");
1010

1111
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
1212
builder.Services.AddSyncfusionBlazor(options => { options.IgnoreScriptIsolation = true; });

0 commit comments

Comments
 (0)