public ModuleInitializer()

in src/AzureFunctions.PowerShell.OpenTelemetry.SDK/AssemblyLoadContext/ModuleInitializer.cs [30:38]


        public ModuleInitializer() 
        {
            var assemblyPath = Path.GetDirectoryName(typeof(ModuleInitializer).Assembly.Location);
            if (assemblyPath == null) 
            {
                throw new Exception("Assembly path for ModuleInitializer was null at constructor");
            }
            sharedDependenciesPath = Path.GetFullPath(Path.Combine(assemblyPath, "Dependencies"));
        }