Standard.Licensing
Standard.Licensing copied to clipboard
Easy-to-use licensing library for .NET Framework, Mono, .NET Core, and Xamarin products
Add the project created by a community member to the README. This closes issue junian/Standard.Licensing#22
Hi, is it possible to generate a Licence without an ExpiresAt condition? Thx
I was wondering where I can see what the `.WithProductFeatures(Dictionary productFeatures)` function actually does and where I could see which options I could set there?
Hi, @junian Thank you for your good work Please update BouncyCastle to latest version because of vulnerability in older versions
Hi, Not an issue, more of an enhancement... Ability to set the license type to something other than Trial and Standard. Maybe making it a string option instead of an...
There are some optimizations that can be made to optimize things a bit, which is helpful when licensing is repeatedly checked.
Currently the `License` class is tied to XML as everything is being performed internally on an XML string. This proposal is to abstract away this dependency either through making License...
This PR fixes #17. * The `Expiration` property was returning an **Unspecified** `DateTime` type. Added the **AdjustToUniversal** style to `Parse`. * Convert `DateTime` passed to `ExpirationDate` to UTC before comparing...
``` var validationFailures = license.Validate() .ExpirationDate(systemDateTime: DateTime.Now) .When(lic => lic.Type == LicenseType.Trial) .And() .Signature(publicKey) .AssertValidLicense(); ``` if somehow cracker knows I was using this lib then he watches the real...