Esempio n. 1
0
        /// <summary>
        /// Returns the names of all builds for the specified project, sorted s.t. the newest build is first in the array
        /// </summary>
        public string[] GetBuildNames(string projectName)
        {
            DataListResponse resp = cruiseServer.GetBuildNames(GenerateProjectRequest(projectName));

            ValidateResponse(resp);
            return(resp.Data.ToArray());
        }
Esempio n. 2
0
 public string[] GetBuildNames(string projectName)
 {
     return(cruiseServer.GetBuildNames(projectName));
 }
Esempio n. 3
0
 /// <summary>
 /// Returns the names of all builds for the specified project, sorted s.t. the newest build is first in the array
 /// </summary>
 public virtual DataListResponse GetBuildNames(ProjectRequest request)
 {
     return(server.GetBuildNames(request));
 }