Telerik.Licensing
Class
BuildDateAttributeThe Telerik.Licensing will set the BuildDateAttribute in TelerikLicensing.cs
Class
EvidenceAttributeInterface
IDiagnosticsLoggerClass
LicenseDateAttributeFor usage in MSBuild, set:
csharp
<ItemGroup>
<AssemblyAttribute Include="Telerik.Licensing.LicenseDateAttribute">
<_Parameter1>$([System.DateTime]::Now.ToString("yyyy-MM-dd"))</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
This attribute marks the release date of a Telerik product. Perpetual licenses are valid for products released (products with LicenseDate) prior the perpetual expiration date.
Specifies the date on which a licensed product was integrated into a deliverable.
Class
ProductCodeAttributeA license for any of the product codes will enable the usage of this assembly.
csharp
[assembly: Telerik.Licensing.ProductCode("DPL")]
Class
ProductNameAttributeA public display friendly english name of the product in this assembly.
csharp
[assembly: global::Telerik.Licensing.ProductName("Telerik UI for WPF")]
In case of DPL - any of the Telerik products that enables usage of DPL must be listed in the RedistributedBy attribute in the DPL .DLLs. For example:
csharp
using Telerik.Licensing;
[assembly:ProductCode("DPL")]
[assembly:RedistributedBy("RCWF")]
[assembly:RedistributedBy("RCWPF")]
[assembly:RedistributedBy("BLAZOR")]
[assembly:RedistributedBy("MAUI")]