Esempio n. 1
0
        Frameworks GetFrameworks()
        {
#if __MACCATALYST__
            return(Frameworks.GetMacCatalystFrameworks());
#elif __IOS__
            return(Frameworks.GetiOSFrameworks(app.IsSimulatorBuild));
#elif __TVOS__
            return(Frameworks.TVOSFrameworks);
#elif __WATCHOS__
            return(Frameworks.GetwatchOSFrameworks(app.IsSimulatorBuild));
#elif __MACOS__
            return(Frameworks.MacFrameworks);
#else
            throw new NotImplementedException();
#endif
        }