From 7bad4ea5ad37fdfdb204dad37797c559762b96dc Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Mon, 7 Jan 2019 15:56:34 -0800 Subject: [PATCH 1/3] Fix sign build --- tools/CreateMappings_rules.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/CreateMappings_rules.json b/tools/CreateMappings_rules.json index 75a57d6aa860..5d89cfacab41 100644 --- a/tools/CreateMappings_rules.json +++ b/tools/CreateMappings_rules.json @@ -109,7 +109,7 @@ { "regex": "Consumption", "group": "Billing", "alias": "Billing" }, { "regex": "Billing", "group": "Billing", "alias": "Billing" }, - { "regex": "Insights", "alias": "Monitor" }, + { "regex": "Monitor", "alias": "Monitor" }, { "regex": "Media", "alias": "Media Services" }, @@ -121,7 +121,7 @@ { "regex": "Tags", "alias": "Tags" }, - { "regex": "Profile", "alias": "Profile" }, + { "regex": "Accounts", "alias": "Accounts" }, { "regex": "Reservations", "alias": "Reservations" }, @@ -131,7 +131,7 @@ { "regex": "AD", "group": "Resources", "alias": "Active Directory" }, { "regex": "Resources", "group": "Resources", "alias": "Resources" }, - { "regex": "Maps", "alias": "Maps" }, + { "regex": "Maps", "alias": "Maps" }, { "regex": "Aks", "group": "Aks", "alias": "Aks" }, { "regex": "ManagedServiceIdentity", "group": "Managed Service Identity", "alias": "Managed Service Identity" }, From ffe50118e8520b9cb8b6cb26ab87daec3ebd447f Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Mon, 7 Jan 2019 16:36:36 -0800 Subject: [PATCH 2/3] update rules --- tools/CreateMappings_rules.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/CreateMappings_rules.json b/tools/CreateMappings_rules.json index 5d89cfacab41..28f72aa6d530 100644 --- a/tools/CreateMappings_rules.json +++ b/tools/CreateMappings_rules.json @@ -109,6 +109,7 @@ { "regex": "Consumption", "group": "Billing", "alias": "Billing" }, { "regex": "Billing", "group": "Billing", "alias": "Billing" }, + { "regex": "ApplicationInsights", "alias": "Monitor" }, { "regex": "Monitor", "alias": "Monitor" }, { "regex": "Media", "alias": "Media Services" }, From 4777f137756f9021ce636c1da378502d523d48af Mon Sep 17 00:00:00 2001 From: maddieclayton Date: Mon, 7 Jan 2019 17:11:41 -0800 Subject: [PATCH 3/3] fix path --- tools/NewHelpIndex.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/NewHelpIndex.ps1 b/tools/NewHelpIndex.ps1 index ab09a14eb4a5..cf1d149eb0d6 100644 --- a/tools/NewHelpIndex.ps1 +++ b/tools/NewHelpIndex.ps1 @@ -70,7 +70,7 @@ $resourceManagerPath = "$PSScriptRoot/../artifacts/$BuildConfig/" $RMpsd1s += Get-ChildItem -Path $resourceManagerPath -Depth 2 | Where-Object { $_.Name -like "*.psd1" -and $_.FullName -notlike "*dll-Help*" } -$HelpFolders += Get-ChildItem -Path "$PSScriptRoot/../src/ResourceManager" -Recurse -Directory | where { $_.Name -eq "help" -and $_.FullName -notlike "*\Stack\*" -and $_.FullName -notlike "*\bin\*"} +$HelpFolders += Get-ChildItem -Path "$PSScriptRoot/../src" -Recurse -Directory | where { $_.Name -eq "help" -and $_.FullName -notlike "*\Stack\*" -and $_.FullName -notlike "*\bin\*"} # Map the name of the cmdlet to the location of the help file $HelpFileMapping = @{}