QualiSystems / FluentTc

:ocean: :two_men_holding_hands: :office: Integrate with TeamCity fluently
https://www.nuget.org/packages/fluenttc
Apache License 2.0
44 stars 35 forks source link

How to get a build configuration template? #32

Closed stecydube closed 8 years ago

borismod commented 8 years ago

For retrieving specific template by Id or name you can use this:

            connectedTc.GetBuildConfigurationTemplate(_ => _.Id("TemplateId"));

For retrieving all the templates:

          connectedTc.GetAllBuildConfigurationTemplates();
stecydube commented 8 years ago

Works perfectly. Thanks!