Hello.
Now, I'm using nevron chart control at .NET 5.0 - winform.
I usually activate my chart control with this code at Program.cs file.
NLicense license = new NLicense("");
NLicenseManager.Instance.SetLicense(license);
NLicenseManager.Instance.LockLicense = true;
This code works fine at local PC.
However, if I use remote debugger(Visual Studio tool), Chart controls do not activate.
My Host PC has a key. But, client PC do not have any key.
Of course, if I execute .exe file(builded file) at just client PC, It works fine.
In this case, How to activate chart control at remote debugger?