Skip to content

Commit 5544194

Browse files
Update adding-external-data-provider-to-dotnet-standalone-designer.md (#1668)
1 parent b9794c6 commit 5544194

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

knowledge-base/adding-external-data-provider-to-dotnet-standalone-designer.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Adding External Data Provider to .NET 6 Standalone Designer
3-
description: "Learn how to add an additional data provider to the Standalone Report Designer that targets .NET 6.0 in Telerik Reporting."
2+
title: Adding External Data Provider to .NET Standalone Designer
3+
description: "Learn how to add a data provider to the Standalone Report Designer that targets .NET in Telerik Reporting."
44
type: how-to
5-
page_title: Adding External Data Provider to Standalone Designer Targeting .NET 6
5+
page_title: Adding External Data Provider to Standalone Designer Targeting .NET
66
slug: adding-external-data-provider-to-dotnet-standalone-designer
7-
tags: standalonde designer, .net, .net6
7+
tags: standalone designer, .net
88
ticketid: 1560108
99
res_type: kb
1010
---
@@ -33,21 +33,21 @@ res_type: kb
3333

3434
> Visit the updated [Integrating the Microsoft SQL Client Data Provider]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/sqldatasource-component/using-data-providers/using-microsfost-data-sqlclient-data-provider%}) article for a how-to on connecting to MS SQL Databases.
3535
36-
With [R3 2022](https://www.telerik.com/support/whats-new/reporting/release-history/progress-telerik-reporting-r3-2022-16-2-22-914), we started shipping a Stanadalone Report Designer compiled for .NET 6.0 runtime which allows resolving assemblies that target .NET Core/5/6. The designer now has the ability to automatically discover assemblies which means that there is no need to register them in the configuration file.
36+
With [R3 2022](https://www.telerik.com/support/whats-new/reporting/release-history/progress-telerik-reporting-r3-2022-16-2-22-914), we started shipping a Stanadalone Report Designer compiled for the .NET runtime, which allows resolving assemblies that target .NET. The designer now has the ability to automatically discover assemblies, which means that there is no need to register them in the configuration file.
3737

3838
The designer can be found in the installation folder of Telerik Reporting -> `\Report Designer\.NET`.
3939

4040
In this article, you will learn how to add external data providers used for the SQL DataSource.
4141

4242
## Solution
4343

44-
We will add the SqlClient Data Prover for this example. The approach can be used for any data provider.
44+
We will add the SqlClient Data Provider for this example. The approach can be used for any data provider.
4545

46-
1. Create a new console application targeting .NET 6.
46+
1. Create a new console application targeting .NET.
4747
1. Add the `Microsoft.Data.SqlClient` NuGet package.
4848
1. Build the project and go to the `Bin` folder.
4949
1. Copy the DLLs related to the __Microsoft.Data.SqlClient__: `Azure.Core.dll`, `Azure.Identity.dll`, `Microsoft.Data.SqlClient.dll` and so on.
50-
1. Paste them into the Standalone Designer for .NET 6 folder. By default, this would be the installation folder of Telerik Reporting -> `\Report Designer\.NET`.
50+
1. Paste them into the Standalone Designer for .NET folder. By default, this would be the installation folder of Telerik Reporting -> `\Report Designer\.NET`.
5151
1. The `Bin` folder of the console application should contain an additional folder named `runtimes` with several subfolders such as `win`, `unix`, `win-x64`, etc. Copy the DLLs from the folders that correspond to your Operating System and CPU architecture.
5252
1. Paste the additional assemblies in the folder of the Standalone Designer for .NET and replace the existing ones if there are any duplicates.
5353
1. Restart the designer if you have previously opened it.

0 commit comments

Comments
 (0)