When attempting to use FaceAISharpBundle in a self-contained deployment, I am receiving a null exception due to this line:
private static string GetExeDir() => Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)!;
I'd like to know if this might be updated to :
private static string GetExeDir() => Path.GetDirectoryName(Application.StartupPath)!;
Thank you!
When attempting to use FaceAISharpBundle in a self-contained deployment, I am receiving a null exception due to this line:
I'd like to know if this might be updated to :
private static string GetExeDir() => Path.GetDirectoryName(Application.StartupPath)!;
Thank you!