Ejemplo n.º 1
0
        public string GetServerVersion()
        {
            WClient wClient       = new WClient();
            string  serverVersion = wClient.GetServerVersion(this._serverUrl);

            return(serverVersion);
        }
Ejemplo n.º 2
0
        public ProjectStatus GetProjectStatus(string projectName)
        {
            WClient       wClient       = new WClient();
            ProjectStatus projectStatus = wClient.GetProjectStatus(this._serverUrl, projectName);

            return(projectStatus);
        }
Ejemplo n.º 3
0
        public string GetProject(string projectName)
        {
            WClient wClient = new WClient();
            string  project = wClient.GetProject(this._serverUrl, projectName);

            return(project);
        }
Ejemplo n.º 4
0
        public ProjectStatus[] GetProjectStatus()
        {
            WClient wClient = new WClient();

            ProjectStatus[] projectsStatus = wClient.GetProjectsStatus(this._serverUrl);
            return(projectsStatus);
        }
Ejemplo n.º 5
0
        //public void ForceBuild(string projectName, ForceFilterClientInfo[] clientInfo)
        //{
        //    WClient wClient = new WClient();
        //    string project = wClient.ForceBuild(this._serverUrl, projectName, clientInfo);
        //    return project;
        //}

        public bool ForceBuild(string projectName, string serializedClientInfo)
        {
            WClient wClient = new WClient();
            bool    result  = wClient.ForceBuild(this._serverUrl, projectName, serializedClientInfo);

            return(result);
        }