prashant
prashant

Reputation: 471

Where will Build Go

I am thinking to use team city for a TFS project. I created team city configurations using TFS server. It is started and creating builds as usual. I was thinking to make the builds for my local version of TFS checked out directory before putting it live. Can anyone please suggest where my current builds are going and can I do something what I am thinking.

help please !!

Upvotes: 0

Views: 69

Answers (1)

PatrickLu-MSFT
PatrickLu-MSFT

Reputation: 51133

There is a working directory, the same as TFS build agent working directly.

Agent work directory is the directory on a build agent that is used as a containing directory for the default checkout directories. By default, this is the Build agent home /work directory.

To modify the default directory location, see workDir parameter in Build Agent Configuration.

Source: Agent Work Directory

To change this checkout location, you just need to change the workDir=../work of the buildagent.properties file (which stored in the /conf/)

Upvotes: 1

Related Questions