Sdk_dll_path property is not working anymore

As per subject sdk_dll_path is not working anymore in C# SDK v5.7.6.1078 and v5.7.6.1079. I had to move all Zoom DLLs to the executable path to make it work.

1 Like

Hey @bragma,

Thanks for using the dev forum!

Forgive me, but I don’t believe I am understanding the issue. Can you explain further?

Thanks!
Michael

In my application I am keeping all Zoom SDK related files on a subfolder separated from the one containing my executable (only zoom_sdk_dotnet_wrap.dll is in the same forder of the executable).

I was using sdk_dll_path to specify the path of the folder where Zoom stuff is kept:

            var res = sdk.Initialize(new InitParam
            {
                sdk_dll_path = GetSdkWrapperPath(),
                web_domain = "https://zoom.us",
                config_opts = new ConfigurableOptions
                {
                    optionalFeatures = (1 << 5)
                }
            });

Now it does not work anymore, the path is ignored and I had to move all Zoom SDK dlls to the main executable folder to make it work.

Hey @bragma,

This change was actually intentional and we do not support custom paths anymore.

Thanks!
Michael

Ok, I suggest you remove the property. I have not found this change in your changelogs.

Hey @bragma,

That is a good suggestion. Will inform the team.
Please let us know if you have any other questions.

Thanks!
Michael

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.