Tfs Vcs Root
TFS VCS root
Example. Adds a TFS VCS root with the TeamCity server user account access to Azure DevOps.
project {
vcsRoot(TFSRoot)
// ...
}
object TFSRoot : TfsVcsRoot({
name = "TFSRoot"
url = "https://dev.azure.com/organization"
root = "${'$'}/path"
})
Example. Adds a TFS VCS root with specified Azure DevOps credentials (token) enforced overwriting all files in the workspace while Agent-Side Checkout and custom minimum polling interval in seconds.
project {
vcsRoot(TFSRoot)
// ...
}
object TFSRoot : TfsVcsRoot({
name = "TFSRoot"
pollInterval = 120
url = "https://dev.azure.com/organization"
root = "${'$'}/path"
userName = "username"
password = "credentialsJSON:******"
forceOverwrite = true
})
Properties
When set to true, TeamCity will call TFS to update workspace rewriting all files
VCS root id. It appears in the web UI and is used in urls. If the VCS root has a uuid specified, then the id can be changed at any time. If uuid is omitted, then TeamCity treats a VCS root with a changed id as a new VCS root, all data associated with the old root will be lost (e.g. a commits graph). Id can also be used by some settings, e.g. as a part of parameter reference. If you change the id, you should find all its occurrences in the current project and change them too. Id must be unique across all VCS roots on the server. If id is missing, it will be generated from the class name (if the class is not from the jetbrains.buildServer.configs.kotlin
package).
Helper for creating references to parameters of this VCS root
VCS root polling interval, in seconds
Functions
Copies parameters of this object to the specified target
Sets the id to the specified value. Type of the id depends on the context in which DSL is executed: it is RelativeId when DSL context is relative, otherwise it is AbsoluteId.
Validates this object and reports found errors to the provided consumer