Standard.Licensing icon indicating copy to clipboard operation
Standard.Licensing copied to clipboard

Easy-to-use licensing library for .NET Framework, Mono, .NET Core, and Xamarin products

Results 27 Standard.Licensing issues
Sort by recently updated
recently updated
newest added

is it possible to use a licence key in this format instead of a file? xxxx-xxx-xxxx-xxxx-xxx

@junian Hi Junian. Thank your making this repo. I used it for one of my projects and created Lisense Manager out of it. It still needs some work. If you...

A license is returned as valid despite the different license types, e.g. if `License.LicenseType = LicneseType.Trail` and one tries to use the following example from your documentation and using the...

Is there any plan to port to .net6+?

anyone knows how to fix this issue please? im triying the default license generator from the guide, but im getting this in my app.

I tested the generated license and it can be used on multiple computers. Can it be locked to only one computer? How? Thanks.

Followed the steps mentioned in the readme, however getting the error in the validationfailures.ToList(). Any Idea on this ? The license signature and data does not match. This usually happens...

The expiration date is set as Universal date when creating the License file (`ToUniversalTime()`). But the `LicenseValidationDate` extension method `ExpirationDate` is comparing with `DateTime.Now`. Shouldn't they both be consistently UniversalTime?

Hello. After reading a private key created with ```c# KeyGenerator keyGen = KeyGenerator.Create(); KeyPair keyPair = keyGen.GenerateKeyPair(); string privateKey = keyPair.ToEncryptedPrivateKeyString(args[Array.IndexOf(args, "--private-key") + 1]); string publicKey = keyPair.ToPublicKeyString(); File.WriteAllText("privKey.txt", privateKey,...

While using any of the below code. Version: .NET 4.6.1 Visual Studio 2019 WPF Windows Application Visual Studio Running as Administrator account. any of the below method cause exception. validationFailures.ToList();...