Skip to content

Commit

Permalink
Added PrefixProjectToNodes to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHinsh committed Mar 4, 2024
1 parent bf98cef commit dd96a2d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/Reference/v2/ProcessorEnrichers/TfsNodeStructure-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,20 @@ in the replacement string.
`TargetProject\NewArea\ValidArea\` but `OriginalProject\DescopeThis` would not
be modified by this rule.

### PrefixProjectToNodes

The `PrefixProjectToNodes` was an option that was used to prepend the source project name to the target set of nodes. This was super valuable when the target Project already has nodes and you dont want to merge them all together. This is now replaced by the `AreaMaps` and `IterationMaps` options.

```
"IterationMaps": {
"^SourceServer\\\\(.*)" , "TargetServer\\SourceServer\\$1",
},
"AreaMaps": {
"^SourceServer\\\\(.*)" , "TargetServer\\SourceServer\\$1",
}
```


### More Complex Regex

Before your migration starts it will validate that all of the Areas and Iterations from the **Source** work items revisions exist on the **Target**. Any that do not exist will be flagged in the logs and if and the migration will stop just after it outputs a list of the missing nodes.
Expand Down

0 comments on commit dd96a2d

Please sign in to comment.