Hello

I want to abort all builds for all projects programatically before
starting the build for other projects. This is the code how i try it
but that does not work.

ProjectStatusResponse psr = manager.GetProjectStatus(new
ServerRequest());

foreach (ProjectStatus p in psr.Projects)
{
      projectRequest = new ProjectRequest();
      projectRequest.ProjectName = p.Name;
      manager.AbortBuild(projectRequest);
}

Can someone help me please?

Best regards and thanks in advance

Reply via email to