I have a bunch of reports that were created in .net framework 4.7.2 using the Visual Studio report designer (created as .cs files). I'm upgrading the solution to .net 6.
I've updated to the correct nuget packages for Telerik winforms and Telerik Reporting, and from what I've read, I need to convert all those reports to a format that will work in the standalone report designer.
I moved all the reports to their own class library, built the solution, an then tried to open that library's .dll file in the standalone designer as described here:
https://docs.telerik.com/reporting/designing-reports/report-designer-tools/desktop-designers/standalone-report-designer/how-to-import-reports-created-with-the-vs-report-designer
Every time, I get an error:
System.Reflection.TargetInvocationException... System.IO.FileNotFoundException: Could not load file or assembly 'System.ComponentModel.TypeConverter, Version=6.0.0.0... The system cannot find the file specified.
I cannot find any reference to that in the report files, and I can't find any verion 6.0.0.0 for .net 6 out there to even install. I did try adding a package reference to a .net std verion, but it's 4.x from 2016.
How can I get past this error so the report can be imported?