/// <summary> /// Returns the name of the most recent build for the specified project /// </summary> public string GetLatestBuildName(string projectName) { DataResponse resp = cruiseServer.GetLatestBuildName(GenerateProjectRequest(projectName)); ValidateResponse(resp); return(resp.Data); }
public string GetLatestBuildName(string projectName) { return(cruiseServer.GetLatestBuildName(projectName)); }
/// <summary> /// Returns the name of the most recent build for the specified project /// </summary> public virtual DataResponse GetLatestBuildName(ProjectRequest request) { return(server.GetLatestBuildName(request)); }