Questions tagged [fluenttc]

FluentTc is a .NET library that allows integration with TeamCity via REST API or from a build step.

General information:

FluentTc is an open source project that is released under Apache 2.0 license. It was first released in 2015 and keeps releasing new version contributed by the community.

Tagging recommendation:

It is recommended to use the fluenttc tag together with the teamcity and c# tags

Resources:

FluentTc project on GitHub

FluentTc documentation

FluentTc package on nuget

2 questions
2
votes
1 answer

TeamCity REST Api put parameter value does not update inherited parameter value

I have a project in TeamCity and I am trying to update one of its inherited parameter's values, the parameter is inherited from the parent project and has a blank value. When I PUT a new value against the API, a new parameter with the same name is…
Jam
  • 296
  • 2
  • 8
1
vote
1 answer

PUT update a TeamCity Configuration Parameter working from PostMan but not from Powershell Script

$url = "https://teamcity.myserver.io/guestAuth/app/rest/buildTypes/id:SandboxPlayGround_WindowsForms1_Build/parameters/Version" $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" $headers.Add("Content-Type",…