Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tools] Fix the issue of different name of module and folder when run CI pipeline #14151

Merged
merged 8 commits into from
Feb 8, 2021
1 change: 0 additions & 1 deletion .ci-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@
"tools/CleanupBuild.ps1",
"tools/CommonIncrementVersion.ps1",
"tools/CreateAliasMapping.ps1",
"tools/CreateFilterMappings.ps1",
"tools/CreateMappings_rules.json",
"tools/CreateMappings.ps1",
"tools/CreateRegistryEntry.ps1"
Expand Down
2 changes: 1 addition & 1 deletion tools/CreateFilterMappings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ function Add-CsprojMappings
foreach ($CsprojFile in $CsprojFiles)
{
$Fields = $CsprojFile.FullName.Replace('/', '\').Split('\')
$Project = $Fields[$Fields.Length - 2]
$Project = $Fields[$Fields.Length - 3]
foreach ($ProjectName in $Script:ProjectToSolutionMappings.Keys)
{
foreach ($Solution in $Script:ProjectToSolutionMappings[$ProjectName])
Expand Down