private static string[] GetReferences()
        {
            var rootPath = PlatformUtils.GetProgramFiles() / @"Unity/Editor/Data/Managed";

            return(new[]
            {
                (rootPath / "UnityEngine.dll").FullPath,
                (rootPath / "UnityEditor.dll").FullPath
            });
        }