Skip to content

Commit e723ce1

Browse files
Merge branch 'hotfix/hotfix-v29.1.33' into 950251-sqlite
2 parents 677f4ab + e19124d commit e723ce1

File tree

11 files changed

+5701
-122
lines changed

11 files changed

+5701
-122
lines changed

ej2-asp-core-mvc/EJ2_ASP.NETCORE/licensing/how-to-register-in-an-application.md

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY
2323
N> * Place the license key between double quotes. Also, ensure that Syncfusion.Licensing.dll is referenced in your project where the license key is being registered.
2424
* Syncfusion<sup style="font-size:70%">&reg;</sup> license validation is done offline during application execution and does not require internet access. Apps registered with a Syncfusion<sup style="font-size:70%">&reg;</sup> license key can be deployed on any system that does not have an internet connection.
2525

26-
## For ASP.NET Core application using .NET 6.0
26+
## For ASP.NET Core application using .NET 8.0/.NET 9.0
2727

28-
Register the license key in the `Program.cs` file if you created the ASP.NET Core web application with Visual Studio 2022 and .NET 6.0.
28+
Register the license key in the `Program.cs` file if you created the ASP.NET Core web application with Visual Studio 2022 and .NET 8.0 /.NET 9.0.
2929

3030
{% tabs %}
3131
{% highlight c# tabtitle="Program.cs" %}
@@ -37,38 +37,10 @@ Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY
3737
// Configure the HTTP request pipeline.
3838
if (!app.Environment.IsDevelopment())
3939
{
40-
app.UseExceptionHandler("/Error");
40+
app.UseExceptionHandler("/Home/Error");
4141
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
4242
app.UseHsts();
4343
}
4444

4545
{% endhighlight %}
4646
{% endtabs %}
47-
48-
## For ASP.NET Core application using .NET 5.0 or .NET 3.1
49-
50-
Register the license key in Configure method of Startup.cs
51-
52-
{% tabs %}
53-
{% highlight c# tabtitle="Startup.cs" %}
54-
55-
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
56-
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
57-
{
58-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(" Your product license key ");
59-
if (env.IsDevelopment())
60-
{
61-
app.UseDeveloperExceptionPage();
62-
}
63-
else
64-
{
65-
app.UseExceptionHandler("/Error");
66-
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
67-
app.UseHsts();
68-
}
69-
70-
...
71-
}
72-
73-
{% endhighlight %}
74-
{% endtabs %}

ej2-asp-core-mvc/Release-notes/29.1.38.md

Lines changed: 1 addition & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -7,81 +7,10 @@ documentation: ug
77

88
# Essential Studio for ##Platform_Name## Release Notes
99

10-
{% include release-info.html date="April 15, 2025" version="v29.1.38" passed="82885" failed="0" %}
10+
{% include release-info.html date="April 15, 2025" version="v29.1.38" %}
1111

1212
{% directory path: _includes/release-notes/v29.1.38 %}
1313

1414
{% include {{file.url}} %}
1515

1616
{% enddirectory %}
17-
18-
## Test Results
19-
20-
| Component Name | Test Cases | Passed | Failed | Remarks |
21-
|---------------|------------|--------|--------|---------|
22-
| PDF Viewer | 19394 | 19394 | 0 | All Passed |
23-
| Diagram | 18418 | 18418 | 0 | All Passed |
24-
| Spreadsheet | 8515 | 8515 | 0 | All Passed |
25-
| Schedule | 4576 | 4576 | 0 | All Passed |
26-
| RichTextEditor | 3842 | 3842 | 0 | All Passed |
27-
| Chart | 3100 | 3100 | 0 | All Passed |
28-
| Document Editor | 2888 | 2888 | 0 | All Passed |
29-
| File Manager | 2175 | 2175 | 0 | All Passed |
30-
| Gantt | 1940 | 1940 | 0 | All Passed |
31-
| TreeGrid | 1552 | 1552 | 0 | All Passed |
32-
| Maps | 1127 | 1127 | 0 | All Passed |
33-
| Common | 616 | 616 | 0 | All Passed |
34-
| In-place Editor | 613 | 613 | 0 | All Passed |
35-
| Ribbon | 486 | 486 | 0 | All Passed |
36-
| Query Builder | 480 | 480 | 0 | All Passed |
37-
| HeatMap | 478 | 478 | 0 | All Passed |
38-
| DateRangePicker | 417 | 417 | 0 | All Passed |
39-
| Stock Chart | 379 | 379 | 0 | All Passed |
40-
| TreeView | 375 | 375 | 0 | All Passed |
41-
| CircularChart3D | 374 | 374 | 0 | All Passed |
42-
| Speed Dial | 366 | 366 | 0 | All Passed |
43-
| DatePicker | 358 | 358 | 0 | All Passed |
44-
| Multiselect | 345 | 345 | 0 | All Passed |
45-
| DateTimePicker | 321 | 321 | 0 | All Passed |
46-
| LinearGauge | 309 | 309 | 0 | All Passed |
47-
| CircularGauge | 283 | 283 | 0 | All Passed |
48-
| Multicolumn Combobox | 254 | 254 | 0 | All Passed |
49-
| Chart3D | 232 | 232 | 0 | All Passed |
50-
| AIAssistView | 220 | 220 | 0 | All Passed |
51-
| Treemap | 209 | 209 | 0 | All Passed |
52-
| DropDownList | 188 | 188 | 0 | All Passed |
53-
| Calendar | 177 | 177 | 0 | All Passed |
54-
| BulletChart | 164 | 164 | 0 | All Passed |
55-
| OtpInput | 156 | 156 | 0 | All Passed |
56-
| TimePicker | 156 | 156 | 0 | All Passed |
57-
| Button | 145 | 145 | 0 | All Passed |
58-
| RangeNavigator | 138 | 138 | 0 | All Passed |
59-
| ComboBox | 136 | 136 | 0 | All Passed |
60-
| ProgressButton | 132 | 132 | 0 | All Passed |
61-
| Toolbar | 129 | 129 | 0 | All Passed |
62-
| Rating | 121 | 121 | 0 | All Passed |
63-
| TextArea | 107 | 107 | 0 | All Passed |
64-
| Breadcrumb | 90 | 90 | 0 | All Passed |
65-
| ButtonGroup | 84 | 84 | 0 | All Passed |
66-
| Autocomplete | 79 | 79 | 0 | All Passed |
67-
| ProgressBar | 78 | 78 | 0 | All Passed |
68-
| ListBox | 70 | 70 | 0 | All Passed |
69-
| Stepper | 70 | 70 | 0 | All Passed |
70-
| Tooltip | 70 | 70 | 0 | All Passed |
71-
| Menu | 67 | 67 | 0 | All Passed |
72-
| Slider | 67 | 67 | 0 | All Passed |
73-
| Kanban | 65 | 65 | 0 | All Passed |
74-
| Floating Action Button | 64 | 64 | 0 | All Passed |
75-
| Dropdown Tree | 63 | 63 | 0 | All Passed |
76-
| Sparkline | 57 | 57 | 0 | All Passed |
77-
| Tab | 53 | 53 | 0 | All Passed |
78-
| SmithChart | 49 | 49 | 0 | All Passed |
79-
| DropdownButton | 48 | 48 | 0 | All Passed |
80-
| SplitButton | 48 | 48 | 0 | All Passed |
81-
| Toast | 47 | 47 | 0 | All Passed |
82-
| ChatUI | 46 | 46 | 0 | All Passed |
83-
| ColorPicker | 45 | 45 | 0 | All Passed |
84-
| Skeleton | 44 | 44 | 0 | All Passed |
85-
| ListView | 43 | 43 | 0 | All Passed |
86-
| Signature | 40 | 40 | 0 | All Passed |
87-
| RadioButton | 37 | 37 | 0 | All Passed |

0 commit comments

Comments
 (0)