10000 docs: merge 2025-q2 with master (#1681) · telerik/reporting-docs@efd237a · GitHub
[go: up one dir, main page]

Skip to content

Commit efd237a

Browse files
petar-i-todorovighristovtodorarabadzhievyordan-mitevDimitarNikolovv06
authored
docs: merge 2025-q2 with master (#1681)
* Create 2025-q2-19-1-25-520.md - added 2025 Q2 article. - Modified the projected dates - added changes for WinUI viewer - added NodeJS versions - left TODO tokens to be fixed before release. * Update security-best-practices.md * Update typereferences-element.md * Update typeValidation-element.md * Update assemblyreferences-element.md * remove 'trial' where necessary * docs: deprecate dotnet 6 * docs: migrate to using parameters for the min/supported dotnet versions * docs: convert articles to use docs parameters for dotnet versions * docs: escape slashes in output dir path token * docs: fix link * docs: remove tokens usage from code snippets * Update designing-reports/connecting-to-data/data-source-components/objectdatasource-component/connecting-the-objectdatasource-component-to-a-data-source.md Co-authored-by: Yordan <60105689+yordan-mitev@users.noreply.github.com> * Update embedding-reports/display-reports-in-applications/winui-3-desktop-application/overview.md Co-authored-by: Yordan <60105689+yordan-mitev@users.noreply.github.com> * Update 2025-q2-19-1-25-520.md - added mandatory change for unified distribution for trial and commercial packages. * docs: update prerequisites for .NET version in setup guide --------- Co-authored-by: Ivan Hristov <ihristov@progress.com> Co-authored-by: Todor Arabadzhiev <todor.arabadzhiev@progress.com> Co-authored-by: Todor Arabadzhiev <arabadzhiev@progress.com> Co-authored-by: Yordan <60105689+yordan-mitev@users.noreply.github.com> Co-authored-by: Dimitar Nikolov <dnikolov@progress.com>
1 parent 4f846eb commit efd237a

File tree

54 files changed

+307
-160
lines changed

Some content is hidden

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

54 files changed

+307
-160
lines changed

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,9 @@ angularsubsetversion: "17.2.0"
462462
kendosubsetversion: "2025.1.227"
463463
kendothemeversion: "10.2.0"
464464
blazoruiversion: "7.1.0"
465+
mindotnetversion: "8"
466+
mindotnetoutputdir: "\\bin\\Debug\\net8.0"
467+
dotnetversions: ".NET 8 and .NET 9"
465468

466469
# Feedback Form Product code
467470
productCode: REPORTING

designing-reports/connecting-to-data/data-source-components/csvdatasource-component/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ Below are listed the available settings for formatting the data retrieved from t
4949
## Supported developer platforms
5050

5151
* .NET Framework 4.6.2 and above
52-
* .NET 6 and above
52+
* .NET {{site.mindotnetversion}} and above
5353
* .NET Standard 2.0 and above

designing-reports/connecting-to-data/data-source-components/graphqldatasource-component/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ It is possible to leverage the 2-step Authentication mechanism above to retrieve
9090
## Supported developer platforms
9191

9292
* .NET Framework 4.6.2 and above
93-
* .NET 6 and above
93+
* .NET {{site.mindotnetversion}} and above
9494
* .NET Standard 2.0 and above
9595

9696
## See Also

designing-reports/connecting-to-data/data-source-components/jsondatasource-component.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ __Inline Data String Configuration:__
4646
## Supported developer platforms
4747

4848
* .NET Framework 4.6.2 and above
49-
* .NET 6 and above
49+
* .NET {{site.mindotnetversion}} and above
5050
* .NET Standard 2.0 and above

designing-reports/connecting-to-data/data-source-components/objectdatasource-component/connecting-the-objectdatasource-component-to-a-data-source.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ When you configure the ObjectDataSource component the settings below are obligat
2222

2323
1. Open __Visual Studio__ and create a new [Class Library](https://learn.microsoft.com/en-us/cpp/mfc/class-library-overview?view=msvc-170).
2424

25-
>The Standalone Report Designer for .NET Framework is a WPF application built against __.NET Framework 4.0__. For that reason, it cannot load and resolve classes from assemblies built against .NET Standard 2.1 or .NET 6+. You can see the [.NET Standard compatibility chart](https://learn.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-2-0) which explains how and when the assemblies can be loaded in different framework versions.
25+
>The Standalone Report Designer for .NET Framework is a WPF application built against __.NET
26+
Framework 4.0__. For that reason, it cannot load and resolve classes from assemblies built
27+
against .NET Standard 2.1 or .NET {{site.mindotnetversion}}+. You can see the [.NET Standard compatibility chart](https://learn.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-2-0) which explains how and when the assemblies can be loaded in different framework versions.
2628

27-
>The new .NET Standalone Report Designer is built for __.NET 8__ and can resolve assemblies built with `.NET Standard`, `.NET 6` and higher - [Starting the Standalone Report Designer for .NET]({%slug telerikreporting/designing-reports/report-designer-tools/desktop-designers/standalone-report-designer/overview%}#starting-the-standalone-report-designer-for-net).
29+
>The new [.NET Standalone Report Designer]({%slug telerikreporting/designing-reports/report-designer-tools/desktop-designers/standalone-report-designer/overview%}#starting-the-standalone-report-designer-for-net) is built for .NET 8 and can resolve assemblies built with `.NET Standard`, `.NET {{site.mindotnetversion}}` and later.
2830

2931
1. Add the following piece of code from [Bind to a BusinessObject]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/objectdatasource-component/how-to/how-to-bind-to-a-businessobject%}).
3032

designing-reports/connecting-to-data/data-source-components/objectdatasource-component/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Any of the following data sources can be assigned to the DataSource property of
4444
## Supported developer platforms
4545

4646
* .NET Framework 4.6.2 and above
47-
* .NET 6 and above
47+
* .NET {{site.mindotnetversion}} and above
4848
* .NET Standard 2.0 and above
4949

5050
## See Also

designing-reports/connecting-to-data/data-source-components/sqldatasource-component/connecting-the-sqldatasource-component-to-a-data-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The following example shows how to connect to the __SQL Server AdventureWorks__
3030
</configuration>
3131
````
3232

33-
Configuration files in XML format are used in .NET Framework applications. In .NET Core and .NET 6/7 applications the configuration file usually is in JSON-format and is called `appsettings.json`. The configuration of connection strings section is explained in the following documentation article: [How to Host Reports Service in ASP.NET Core in .NET 6]({%slug telerikreporting/using-reports-in-applications/host-the-report-engine-remotely/telerik-reporting-rest-services/asp.net-core-web-api-implementation/how-to-host-reports-service-in-asp.net-core-in-.net-6-with-minimal-api%}).
33+
Configuration files in XML format are used in .NET Framework applications. In .NET Core and .NET 6+ applications, the configuration file usually is in JSON-format and is called `appsettings.json`. The configuration of connection strings section is explained in the following documentation article: [How to Host Reports Service in ASP.NET Core in .NET {{site.mindotnetversion}}]({%slug telerikreporting/using-reports-in-applications/host-the-report-engine-remotely/telerik-reporting-rest-services/asp.net-core-web-api-implementation/how-to-host-reports-service-in-asp.net-core-in-.net-6-with-minimal-api%}).
3434

3535
When the connection string is stored in the configuration file, you need to specify the name of the configuration element as a value for the `ConnectionString` property of `SqlDataSource`. Specifying a value for the `ProviderName` property is no longer necessary, since that information is already present in the configuration element itself.
3636

designing-reports/connecting-to-data/data-source-components/sqldatasource-component/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ The `SqlDataSource` component uses `ADO.NET` classes to interact with any databa
4141
## Supported developer platforms
4242

4343
* .NET Framework 4.6.2 and above
44-
* .NET 6 and above
44+
* .NET {{site.mindotnetversion}} and above
4545
* .NET Standard 2.0 and above

designing-reports/connecting-to-data/data-source-components/webservicedatasource-component/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ It is possible to leverage the 2-step Authentication mechanism above to retrieve
9696
## Supported developer platforms
9797

9898
* .NET Framework 4.6.2 and above
99-
* .NET 6 and above
99+
* .NET {{site.mindotnetversion}} and above
100100
* .NET Standard 2.0 and above
101101

102102
## See Also

designing-reports/report-designer-tools/desktop-designers/standalone-report-designer/configuration/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,14 +161,14 @@ The following code example shows the default `Telerik.ReportDesigner.Net.dll.con
161161
<Telerik.ReportDesigner DefaultWorkingDir="Examples">
162162
</Telerik.ReportDesigner>
163163
<Telerik.Reporting>
164-
<!-- Add assembly references (in .NET6 and later assemblies are resolved by file name) -->
164+
<!-- Add assembly references (in .NET8 and later assemblies are resolved by file name) -->
165165
<!--
166166
<AssemblyReferences>
167167
<add name="MyUserFunctions" />
168168
<add name="MyBusinessObjects" />
169169
</AssemblyReferences>
170170
-->
171-
<!-- Add trace listeners (in .NET6 and later assemblies that contain custom listeners are resolved by file name)-->
171+
<!-- Add trace listeners (in .NET8 and later assemblies that contain custom listeners are resolved by file name)-->
172172
<!--
173173
<traceListeners>
174174
<add name="myCustomListener" type="CustomListenersNamespace.CustomListener, CustomListenersAssembly" initializeData="Telerik.ReportDesigner.custom.log" />

0 commit comments

Comments
 (0)
0