In reading, it appears that Telerik supports .NET 5 (.net core 5) and would like to migrate but do not see any documentation around it.
My current solution is:
Full Framework project so I can use the VS designer to design the reports. Each report consists of a .cs, .Designer.cs, and .resx file.
.NET 2.0 standard project with a file link to those reports (not a copy) for unit testing and consumption
example in the project file:
<ItemGroup> <Compile Include="..\OtherProject\Telerik\Report.cs" Link="Telerik\Report.cs" /> <Compile Include="..\OtherProject\Telerik\Report.Designer.cs" Link="Telerik\Report.Designer.cs" /> <EmbeddedResource Include="..\OtherProject\Telerik\Report.resx" Link="Telerik\Report.resx" /></ItemGroup>.Net Core 3.1 app consuming the .NET 2.0 standard project.
How do I migrate those reports from the .NET 2.0 standard project to a native .NET 5 project while maintaining the designer capability?
