AvalonStudio.CommandLineTools.PlatformSupport.PlatformSupport C# (CSharp) Method

PlatformSupport() static private method

static private PlatformSupport ( ) : AvalonStudio.Platforms
return AvalonStudio.Platforms
        static PlatformSupport()
        {
            switch (Platform.PlatformIdentifier)
            {
                case PlatformID.Win32Windows:
                case PlatformID.Win32NT:
                    executorType = ShellExecutorType.Windows;
                    break;

                case PlatformID.MacOSX:
                case PlatformID.Unix:
                    executorType = ShellExecutorType.Unix;
                    break;
            }
        }