stack72 / TeamCitySharp

No Longer Maintained - please use https://github.com/mavezeau/TeamCitySharp
Other
200 stars 165 forks source link

How initiate build? #109

Closed ma3yta closed 7 years ago

borismod commented 7 years ago

I am not sure there is a method for running a build in TeamCitySharp. You may want to take a look at FluentTc library which allows this easily:

new RemoteTc()
   .Connect(_ => _.ToHost("tc")
   .AsUser("MYUSERNAME", "MYPASSWORD"))
   .RunBuildConfiguration(_ => _.Id("bt2"));

For more examples see wiki: https://github.com/QualiSystems/FluentTc/wiki/RemoteTc

ma3yta commented 7 years ago

@borismod thanks