Were can I find a documentation of classes in RemoteDesktopManager.AddOn Assembly ? Especially the RegisterInstallationPath method, or an Addon example
Thx
Hello,
We no longer support external add-ons. Perhaps we could help you directly?
Regards
David Hervieux
In my "old" Addon, I use this method
AddOnServices.RegisterInstallationPath(
String.Empty,
ADDON_NAME,
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), @"Java\jre6\bin"),
new string[] { "javaw.exe" },
"Java (javaw.exe) installation path ",
"",
"http://www.java.com",
Resources.Java_16x16,
Resources.Java_32x32);But, since version 2020.2.15, there is an error with .NET Framework 4.7.2 with this "homemade" addon.. When I made a recompilation in VS2017 there is an error with this method. i expect there is some modification.
Hello,
I think that the problem is that you need to send an svgName (string) instead of the image.
public static void RegisterInstallationPath(
string description,
string name,
string[] defaultPaths,
string[] checkFileNames,
string title,
string group,
string downloadUrl,
string svgName)
You can try to send "JavaWebStart" which exists in our libs.
Regards
David Hervieux