I tried to follow the instructions here:
https://docs.telerik.com/reporting/designing-reports/report-designer-tools/web-report-designer/how-to-set-up-in-blazor-application
"Use NuGet package manager to add the Telerik.WebReportDesigner.Services
package. This will also resolve other..."
Later on we have:
...
services.TryAddSingleton<IReportServiceConfiguration>(sp => new ReportServiceConfiguration
{
ReportingEngineConfiguration = sp.GetService<IConfiguration>(),
HostAppId = "BlazorWebReportDesignerDemo",
Storage = new FileStorage(),
ReportSourceResolver = new UriReportSourceResolver(Path.Combine(sp.GetService<IWebHostEnvironment>().WebRootPath, "Reports"))
});
But some of the types are not available. E.G. FileStorage()
Which is a part of
Assembly Telerik.Reporting, Version=17.1.23.718, Culture=neutral, PublicKeyToken=a9d7983dfcc261be
So the instruction is misleading for beginners :-)
Which additional pakets are needed?
Btw: A link to a ready made project may helpful.
:-)
Sorry, was my fault. Or more a VS2022 hickup. After restarting VS2022 the package was found. OMG.
BTW; Addting the "usings" in the example may help sometimes.