Skip to content

Commit 17c1ccd

Browse files
author
Maddie Clayton
authored
Merge pull request #8254 from maddieclayton/fixsignbuild
Fix sign build
2 parents 4ce92b4 + 4777f13 commit 17c1ccd

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

tools/CreateMappings_rules.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@
109109
{ "regex": "Consumption", "group": "Billing", "alias": "Billing" },
110110
{ "regex": "Billing", "group": "Billing", "alias": "Billing" },
111111

112-
{ "regex": "Insights", "alias": "Monitor" },
112+
{ "regex": "ApplicationInsights", "alias": "Monitor" },
113+
{ "regex": "Monitor", "alias": "Monitor" },
113114

114115
{ "regex": "Media", "alias": "Media Services" },
115116

@@ -121,7 +122,7 @@
121122

122123
{ "regex": "Tags", "alias": "Tags" },
123124

124-
{ "regex": "Profile", "alias": "Profile" },
125+
{ "regex": "Accounts", "alias": "Accounts" },
125126

126127
{ "regex": "Reservations", "alias": "Reservations" },
127128

@@ -131,7 +132,7 @@
131132
{ "regex": "AD", "group": "Resources", "alias": "Active Directory" },
132133
{ "regex": "Resources", "group": "Resources", "alias": "Resources" },
133134

134-
{ "regex": "Maps", "alias": "Maps" },
135+
{ "regex": "Maps", "alias": "Maps" },
135136
{ "regex": "Aks", "group": "Aks", "alias": "Aks" },
136137

137138
{ "regex": "ManagedServiceIdentity", "group": "Managed Service Identity", "alias": "Managed Service Identity" },

tools/NewHelpIndex.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ $resourceManagerPath = "$PSScriptRoot/../artifacts/$BuildConfig/"
7070

7171
$RMpsd1s += Get-ChildItem -Path $resourceManagerPath -Depth 2 | Where-Object { $_.Name -like "*.psd1" -and $_.FullName -notlike "*dll-Help*" }
7272

73-
$HelpFolders += Get-ChildItem -Path "$PSScriptRoot/../src/ResourceManager" -Recurse -Directory | where { $_.Name -eq "help" -and $_.FullName -notlike "*\Stack\*" -and $_.FullName -notlike "*\bin\*"}
73+
$HelpFolders += Get-ChildItem -Path "$PSScriptRoot/../src" -Recurse -Directory | where { $_.Name -eq "help" -and $_.FullName -notlike "*\Stack\*" -and $_.FullName -notlike "*\bin\*"}
7474

7575
# Map the name of the cmdlet to the location of the help file
7676
$HelpFileMapping = @{}

0 commit comments

Comments
 (0)