[Bug] IsMatch ignores case, replace does not in TfsNodeStructureTool? #3127
ReneGoossens-B
started this conversation in
General
Replies: 1 comment
-
|
Sounds reasnoble: #3129 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
While working on splitting a project, I wanted to map the sub folder of area's as to the new project:
Grouped Project\Split Project\Area 1\Item\Element => Split Project\Area 1\Item\Element
so I setup a mapping:
"^Grouped Project\\Split Project\\(.*)$" => "Split Project\$1"
But on sub path was also incorrect and should have been mapped to an Area, so I added a mapping for that one:
Grouped Project\Split Project\Area 1\Wrong Sub Path Should be Area\Element => Split Project\Wrong Sub Path Should be Area\Element
so I setup a mapping:
"^Grouped Project\\Split Project\\Area 1\\Wrong Sub Path Should Be Area\\(.*)$" => "Split Project\Wrong Sub Path Should Be Area\$1"
However I missed that the path was not "Wrong Sub Path Should Be Area" but "Wrong Sub Path Should be Area" (small b instead of B)!
This runs into a bug in my opinion in TfsNodeStructureTool:
Am I correct?
Beta Was this translation helpful? Give feedback.
All reactions