The following article shows how to attach the source code to your project:
https://docs.telerik.com/devtools/winforms/knowledge-base/attach-telerik-source-code-to-your-project
When attaching the .NETCore projects (latest version R1 2023) to your application, the project can't be built.
Thanks for the fix Dess. I was able to attach the source and solve my issue pretty quickly, was a simple input validation error on the custom EditAppointmentDialog because I was not using all the original fields.
Awesome sauce!
Hello,
Currently, the possible solution that I can suggest is to perform the following steps:
1. After unzipping the source code inside RadControls folder, create Build folder >> Imports folder
e.g. C:\Projects\Telerik_UI_For_WinForms_2023_1_117_source\RadControls\Build\Imports
Then create NetCoreConfig.targets file with the following content:
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<!--Configurations-->
<Configurations>Debug;Release;ReleaseTrial</Configurations>
<!-- Target Frameworks -->
<TargetFrameworks>netcoreapp3.1;net6.0-windows;net7.0-windows</TargetFrameworks>
<TargetFrameworks Condition="'$(IsTFMSpecific)' == 'true'">netcoreapp3.1;net6.0-windows10.0.17763;net7.0-windows10.0.17763</TargetFrameworks>
</PropertyGroup>
</Project>
2. In the DesignerConsts.cs file uncomment the following line:
//public const string KeyToken = ", Culture=neutral, PublicKeyToken=5bb2a467cbec794e";
3. Make sure that all hidden files are visible:
Copy the PublicKey from AssemblyInfo.cs and use it in AssemblyInfo.NetCore.cs. You should do it for all Telerik projects that are attached to your application.Regards,
Dess | Tech Support Engineer, Principal
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Hello, Alessandro,
Thank you for reporting this. We will do our best to update the attached zip so the .NETCore project to be successfully built locally.
Regards,
Dess | Tech Support Engineer, Principal
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.