'FirefoxProfileManager (selenium) not fetching profiles in MAC

Using below code to open firefox profile, Works file in windows but in Mac. Any help please? Profile created separately on windows and MAC

Environment - Selenium/C# Windows and MAC

        *var options = new FirefoxOptions();
        FirefoxProfileManager profile = new FirefoxProfileManager();
        FirefoxProfile Prof = profile.GetProfile("AutomatedUser");
        options.Profile = Prof;
        IWebDriver driver = new FirefoxDriver(options);*


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source