Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save borismod/13adf930a52b76982cb3 to your computer and use it in GitHub Desktop.
Save borismod/13adf930a52b76982cb3 to your computer and use it in GitHub Desktop.
Get Builds by Build Configuration Id with StartDate and FinishDate
var builds = new RemoteTc()
.Connect(_ => _.ToHost("teamcity.codebetter.com").AsGuest())
.GetBuilds(_ => _.BuildConfiguration(__ => __.Id("FluentTc")),
_ => _.IncludeStartDate().IncludeFinishDate());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment