I have a .NET 6 solution with a reports project that is .NET Framework 4.8 using Telerik Reporting version R1_2022_SP1_16_0_22_225.
On this line of code in the report designer, which is for a picturebox in the report
this.pictureBox1.Value = ((object)(resources.GetObject("pictureBox1.Value")))
it's throwing an exception ->
BinaryFormatter serialization and deserialization are disabled within this application. See https://aka.ms/binaryformatter for more information.
This url indicates the problem was fixed in the Telerik Reporting R1 2021, but I am getting the exception.
I've tried the workaround below but that also does not work and I still get the exception.
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>