Exemplo n.º 1
0
        /// <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);
        }
Exemplo n.º 2
0
 public string GetLatestBuildName(string projectName)
 {
     return(cruiseServer.GetLatestBuildName(projectName));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Returns the name of the most recent build for the specified project
 /// </summary>
 public virtual DataResponse GetLatestBuildName(ProjectRequest request)
 {
     return(server.GetLatestBuildName(request));
 }