Google.IOSResolver.GetProjectPath C# (CSharp) Method

GetProjectPath() public static method

Get the generated xcode project path relative to the specified directory.
public static GetProjectPath ( string relativeTo ) : string
relativeTo string Path the project is relative to.
return string
    public static string GetProjectPath(string relativeTo) {
        return Path.Combine(relativeTo,
                            Path.Combine(PROJECT_NAME + ".xcodeproj",
                                         "project.pbxproj"));
    }