public bool AddFrameworkSearchPaths(PBXList paths)
        {
            xcodeProject.UpdateBuildProperty(targetGUID, "FRAMEWORK_SEARCH_PATHS", (string[])paths.ToArray(typeof(string)), new string[] { });

            foreach (KeyValuePair <string, XCBuildConfiguration> buildConfig in buildConfigurations)
            {
                buildConfig.Value.AddFrameworkSearchPaths(paths);
            }
            modified = true;
            return(modified);
        }
        public bool AddLibrarySearchPaths(PBXList paths)
        {
            xcodeProject.UpdateBuildProperty(targetGUID, "LIBRARY_SEARCH_PATHS", (string[])paths.ToArray(typeof(string)), new string[] { });

            //			Debug.Log ("AddLibrarySearchPaths " + paths);
            foreach (KeyValuePair <string, XCBuildConfiguration> buildConfig in buildConfigurations)
            {
                buildConfig.Value.AddLibrarySearchPaths(paths);
            }
            modified = true;
            return(modified);
        }