How to release a software using OpenVision


https://www.nevron.com/Forum/Topic9638.aspx
Print Topic | Close Window

By Alexandre Sauner - 8 Years Ago
Hey,

I've done a nice UI with Nevron OpenVision, the .exe works on my PC, but when i try to run my software on a clean virtualbox with just .net framework, the program stops to work with an error in the Presentation.dll, is there any fix to that problem ? Am i doing something wrong ?
By Nevron Support - 8 Years Ago
Hello Alexandre,
Did you configured your Desktop license key in the application code?
Take a look at the "Desktop Redistribution" section in the Help Documentation -> Getting Started -> Activation

using Nevron;
...
NLicense license = new NLicense("licenseKey");
NLicenseManager.Instance.SetLicense(license);

It is important to apply the license before any constructors are called.
The LockLicense property instructs the manager that no further license changes must occur.

By Alexandre Sauner - 8 Years Ago
Hey ! I did