From 3cae3e62ae04982c67e18d4996b153e83e6a9c33 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Sat, 5 Oct 2019 11:13:55 +0800 Subject: [PATCH 01/15] using relative path for Az.Sql.psd1 by removing the beginning '.\' --- src/Sql/Sql/Az.Sql.psd1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index ed2d95abdbe3..380088639f03 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -56,20 +56,20 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Sql.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = '.\Sql.types.ps1xml' +TypesToProcess = 'Sql.types.ps1xml' # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Sql.format.ps1xml' +FormatsToProcess = 'Sql.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() From 74c721cf6f9e2026df5959b7532621e6d44750f4 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Sat, 5 Oct 2019 12:35:52 +0800 Subject: [PATCH 02/15] make change to '*.ps1xml' only --- src/Sql/Sql/Az.Sql.psd1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index 380088639f03..840ddc4e6024 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', - 'Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' +RequiredAssemblies = '.\Microsoft.Azure.Management.Sql.dll', + '.\Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -69,7 +69,7 @@ TypesToProcess = 'Sql.types.ps1xml' FormatsToProcess = 'Sql.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') +NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() From f9d40e0621cc4203928aaa2123ae509ea58a9dd3 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Tue, 8 Oct 2019 16:02:54 +0800 Subject: [PATCH 03/15] again, use relative path for RequiredAssemblies and NestedModules --- src/Sql/Sql/Az.Sql.psd1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index 840ddc4e6024..380088639f03 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Sql.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -69,7 +69,7 @@ TypesToProcess = 'Sql.types.ps1xml' FormatsToProcess = 'Sql.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() From 242a640e2caa2a9d9d175f5ae89f43d6da8612e2 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Tue, 8 Oct 2019 19:48:17 +0800 Subject: [PATCH 04/15] apply relative path to all modules' psd1 file, also update tools/CheckAssemblies.ps1 to use the new paths --- src/Accounts/Accounts/Az.Accounts.psd1 | 50 +++++++++---------- src/Advisor/Advisor/Az.Advisor.psd1 | 6 +-- src/Aks/Aks/Az.Aks.psd1 | 4 +- .../AlertsManagement/Az.AlertsManagement.psd1 | 6 +-- .../AnalysisServices/Az.AnalysisServices.psd1 | 6 +-- .../ApiManagement/Az.ApiManagement.psd1 | 14 +++--- .../Az.ApplicationInsights.psd1 | 6 +-- .../Attestation/Az.Attestation.psd1 | 4 +- src/Automation/Automation/Az.Automation.psd1 | 6 +-- src/Batch/Batch/Az.Batch.psd1 | 16 +++--- src/Billing/Billing/Az.Billing.psd1 | 16 +++--- src/Blueprint/Blueprint/Az.Blueprint.psd1 | 6 +-- src/Cdn/Cdn/Az.Cdn.psd1 | 4 +- .../Az.CognitiveServices.psd1 | 4 +- src/Compute/Compute/Az.Compute.psd1 | 10 ++-- .../Az.ContainerInstance.psd1 | 8 +-- .../Az.ContainerRegistry.psd1 | 6 +-- src/DataBox/DataBox/Az.DataBox.psd1 | 6 +-- .../DataFactoryV2/Az.DataFactory.psd1 | 16 +++--- .../Az.DataLakeAnalytics.psd1 | 6 +-- .../DataLakeStore/Az.DataLakeStore.psd1 | 8 +-- .../DataMigration/Az.DataMigration.psd1 | 4 +- src/DataShare/DataShare/Az.DataShare.psd1 | 4 +- .../Az.DeploymentManager.psd1 | 4 +- src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 | 4 +- .../DevTestLabs/Az.DevTestLabs.psd1 | 6 +-- .../Az.DeviceProvisioningServices.psd1 | 6 +-- src/Dns/Dns/Az.Dns.psd1 | 4 +- src/EventGrid/EventGrid/Az.EventGrid.psd1 | 4 +- src/EventHub/EventHub/Az.EventHub.psd1 | 6 +-- src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 | 4 +- .../Az.GuestConfiguration.psd1 | 6 +-- src/HDInsight/HDInsight/Az.HDInsight.psd1 | 8 +-- .../HealthcareApis/Az.HealthcareApis.psd1 | 4 +- src/IotCentral/IotCentral/Az.IotCentral.psd1 | 4 +- src/IotHub/IotHub/Az.IotHub.psd1 | 6 +-- src/KeyVault/KeyVault/Az.KeyVault.psd1 | 10 ++-- src/Kusto/Kusto/Az.Kusto.psd1 | 4 +- src/LogicApp/LogicApp/Az.LogicApp.psd1 | 6 +-- .../MachineLearning/Az.MachineLearning.psd1 | 8 +-- .../Az.ManagedServiceIdentity.psd1 | 4 +- .../ManagedServices/Az.ManagedServices.psd1 | 6 +-- .../Az.ManagementPartner.psd1 | 4 +- src/Maps/Maps/Az.Maps.psd1 | 6 +-- .../Az.MarketplaceOrdering.psd1 | 6 +-- src/Media/Media/Az.Media.psd1 | 4 +- .../MixedReality/Az.MixedReality.psd1 | 4 +- src/Monitor/Monitor/Az.Monitor.psd1 | 6 +-- .../NetAppFiles/Az.NetAppFiles.psd1 | 4 +- src/Network/Network/Az.Network.psd1 | 6 +-- .../NotificationHubs/Az.NotificationHubs.psd1 | 4 +- .../Az.OperationalInsights.psd1 | 8 +-- src/Peering/Peering/Az.Peering.psd1 | 4 +- .../PolicyInsights/Az.PolicyInsights.psd1 | 6 +-- .../PowerBIEmbedded/Az.PowerBIEmbedded.psd1 | 8 +-- src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 | 4 +- .../RecoveryServices/Az.RecoveryServices.psd1 | 30 +++++------ src/RedisCache/RedisCache/Az.RedisCache.psd1 | 8 +-- src/Relay/Relay/Az.Relay.psd1 | 4 +- .../Reservations/Az.Reservations.psd1 | 6 +-- .../ResourceGraph/Az.ResourceGraph.psd1 | 6 +-- src/Resources/Resources/Az.Resources.psd1 | 28 +++++------ src/Search/Search/Az.Search.psd1 | 6 +-- src/Security/Security/Az.Security.psd1 | 4 +- src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 | 6 +-- .../ServiceFabric/Az.ServiceFabric.psd1 | 10 ++-- src/SignalR/SignalR/Az.SignalR.psd1 | 6 +-- .../Storage.Management/Az.Storage.psd1 | 30 +++++------ .../StorageSync/Az.StorageSync.psd1 | 8 +-- .../StreamAnalytics/Az.StreamAnalytics.psd1 | 6 +-- .../Subscription/Az.Subscription.psd1 | 6 +-- .../TrafficManager/Az.TrafficManager.psd1 | 4 +- src/Websites/Websites/Az.Websites.psd1 | 4 +- tools/CheckAssemblies.ps1 | 2 +- 74 files changed, 284 insertions(+), 284 deletions(-) diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1 index 3c3e9b6c97aa..f81695451524 100644 --- a/src/Accounts/Accounts/Az.Accounts.psd1 +++ b/src/Accounts/Accounts/Az.Accounts.psd1 @@ -56,29 +56,29 @@ DotNetFrameworkVersion = '4.7.2' # RequiredModules = @() # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.PowerShell.Authentication.Abstractions.dll', - '.\Microsoft.Azure.PowerShell.Authentication.dll', - '.\Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll', - '.\Microsoft.Azure.PowerShell.Clients.Authorization.dll', - '.\Microsoft.Azure.PowerShell.Clients.Compute.dll', - '.\Microsoft.Azure.PowerShell.Clients.Graph.Rbac.dll', - '.\Microsoft.Azure.PowerShell.Clients.Monitor.dll', - '.\Microsoft.Azure.PowerShell.Clients.Network.dll', - '.\Microsoft.Azure.PowerShell.Clients.PolicyInsights.dll', - '.\Microsoft.Azure.PowerShell.Clients.ResourceManager.dll', - '.\Microsoft.Azure.PowerShell.Common.dll', - '.\Microsoft.Azure.PowerShell.Storage.dll', - '.\Microsoft.Azure.PowerShell.Clients.Storage.Management.dll', - '.\Microsoft.Azure.PowerShell.Clients.KeyVault.dll', - '.\Microsoft.Azure.PowerShell.Clients.Websites.dll', - '.\Hyak.Common.dll', '.\Microsoft.ApplicationInsights.dll', - '.\Microsoft.Azure.Common.dll', - '.\Microsoft.Rest.ClientRuntime.dll', - '.\Microsoft.Rest.ClientRuntime.Azure.dll', - '.\Microsoft.WindowsAzure.Storage.dll', - '.\Microsoft.WindowsAzure.Storage.DataMovement.dll', - '.\Microsoft.Azure.PowerShell.Clients.Aks.dll', - '.\Microsoft.Azure.PowerShell.Strategies.dll' +RequiredAssemblies = 'Microsoft.Azure.PowerShell.Authentication.Abstractions.dll', + 'Microsoft.Azure.PowerShell.Authentication.dll', + 'Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll', + 'Microsoft.Azure.PowerShell.Clients.Authorization.dll', + 'Microsoft.Azure.PowerShell.Clients.Compute.dll', + 'Microsoft.Azure.PowerShell.Clients.Graph.Rbac.dll', + 'Microsoft.Azure.PowerShell.Clients.Monitor.dll', + 'Microsoft.Azure.PowerShell.Clients.Network.dll', + 'Microsoft.Azure.PowerShell.Clients.PolicyInsights.dll', + 'Microsoft.Azure.PowerShell.Clients.ResourceManager.dll', + 'Microsoft.Azure.PowerShell.Common.dll', + 'Microsoft.Azure.PowerShell.Storage.dll', + 'Microsoft.Azure.PowerShell.Clients.Storage.Management.dll', + 'Microsoft.Azure.PowerShell.Clients.KeyVault.dll', + 'Microsoft.Azure.PowerShell.Clients.Websites.dll', + 'Hyak.Common.dll', 'Microsoft.ApplicationInsights.dll', + 'Microsoft.Azure.Common.dll', + 'Microsoft.Rest.ClientRuntime.dll', + 'Microsoft.Rest.ClientRuntime.Azure.dll', + 'Microsoft.WindowsAzure.Storage.dll', + 'Microsoft.WindowsAzure.Storage.DataMovement.dll', + 'Microsoft.Azure.PowerShell.Clients.Aks.dll', + 'Microsoft.Azure.PowerShell.Strategies.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -87,10 +87,10 @@ RequiredAssemblies = '.\Microsoft.Azure.PowerShell.Authentication.Abstractions.d # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Accounts.format.ps1xml', '.\Accounts.generated.format.ps1xml' +FormatsToProcess = 'Accounts.format.ps1xml', 'Accounts.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Advisor/Advisor/Az.Advisor.psd1 b/src/Advisor/Advisor/Az.Advisor.psd1 index c8de54324b5b..4819aa0cd907 100644 --- a/src/Advisor/Advisor/Az.Advisor.psd1 +++ b/src/Advisor/Advisor/Az.Advisor.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Advisor.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Advisor.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -63,10 +63,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Advisor.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Advisor.format.ps1xml' +FormatsToProcess = 'Advisor.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Advisor.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Advisor.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Aks/Aks/Az.Aks.psd1 b/src/Aks/Aks/Az.Aks.psd1 index 8e3c18bc697d..7d3853d391b4 100644 --- a/src/Aks/Aks/Az.Aks.psd1 +++ b/src/Aks/Aks/Az.Aks.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\YamlDotNet.dll', '.\AutoMapper.dll' +RequiredAssemblies = 'YamlDotNet.dll', 'AutoMapper.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\YamlDotNet.dll', '.\AutoMapper.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Aks.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Aks.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 index b68c25d904a6..95b1e34cc1d8 100644 --- a/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 +++ b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.AlertsManagement.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.AlertsManagement.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.AlertsManagement.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.generated.format.ps1xml' +FormatsToProcess = 'Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 index 7bde72564475..5b0ed5d2eefb 100644 --- a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 +++ b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Analysis.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,8 +68,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 index 273206767d50..d84f7448a805 100644 --- a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 +++ b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 @@ -56,9 +56,9 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', - '.\Microsoft.Azure.Management.ApiManagement.dll', - '.\Microsoft.WindowsAzure.Storage.dll' +RequiredAssemblies = 'AutoMapper.dll', + 'Microsoft.Azure.Management.ApiManagement.dll', + 'Microsoft.WindowsAzure.Storage.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,12 +68,12 @@ RequiredAssemblies = '.\AutoMapper.dll', # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = - '.\Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.generated.format.ps1xml', - '.\Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.generated.format.ps1xml' + 'Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.generated.format.ps1xml', + 'Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 index 7e864801f062..7fee4cf33305 100644 --- a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 +++ b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ApplicationInsights.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ApplicationInsights.format.ps1xml' +FormatsToProcess = 'ApplicationInsights.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Attestation/Attestation/Az.Attestation.psd1 b/src/Attestation/Attestation/Az.Attestation.psd1 index 38d5797d8a61..69389df37338 100644 --- a/src/Attestation/Attestation/Az.Attestation.psd1 +++ b/src/Attestation/Attestation/Az.Attestation.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Attestation.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Attestation.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Attestation.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Attestation.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Attestation.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Automation/Automation/Az.Automation.psd1 b/src/Automation/Automation/Az.Automation.psd1 index ef18cd85b44f..ca9e0ae961f2 100644 --- a/src/Automation/Automation/Az.Automation.psd1 +++ b/src/Automation/Automation/Az.Automation.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Automation.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Automation.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Automation.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Automation.format.ps1xml' +FormatsToProcess = 'Automation.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Automation.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Automation.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Batch/Batch/Az.Batch.psd1 b/src/Batch/Batch/Az.Batch.psd1 index b166411076a2..54ff7f3fe0ad 100644 --- a/src/Batch/Batch/Az.Batch.psd1 +++ b/src/Batch/Batch/Az.Batch.psd1 @@ -56,12 +56,12 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Batch.dll', - '.\Microsoft.Azure.Management.Batch.dll', - '.\Microsoft.Extensions.Primitives.dll', - '.\System.Runtime.CompilerServices.Unsafe.dll', - '.\Microsoft.WindowsAzure.Storage.dll', - '.\Microsoft.AspNetCore.WebUtilities.dll' +RequiredAssemblies = 'Microsoft.Azure.Batch.dll', + 'Microsoft.Azure.Management.Batch.dll', + 'Microsoft.Extensions.Primitives.dll', + 'System.Runtime.CompilerServices.Unsafe.dll', + 'Microsoft.WindowsAzure.Storage.dll', + 'Microsoft.AspNetCore.WebUtilities.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -70,10 +70,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Batch.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Batch.format.ps1xml' +FormatsToProcess = 'Batch.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Batch.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Batch.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Billing/Billing/Az.Billing.psd1 b/src/Billing/Billing/Az.Billing.psd1 index 1cfe843228fb..45255fe9777a 100644 --- a/src/Billing/Billing/Az.Billing.psd1 +++ b/src/Billing/Billing/Az.Billing.psd1 @@ -56,9 +56,9 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Billing.dll', - '.\Microsoft.Azure.Management.Consumption.dll', - '.\Microsoft.Azure.Commerce.UsageAggregates.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Billing.dll', + 'Microsoft.Azure.Management.Consumption.dll', + 'Microsoft.Azure.Commerce.UsageAggregates.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -67,13 +67,13 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Billing.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Billing.format.ps1xml', '.\Consumption.format.ps1xml', - '.\UsageAggregates.format.ps1xml' +FormatsToProcess = 'Billing.format.ps1xml', 'Consumption.format.ps1xml', + 'UsageAggregates.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Billing.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.Consumption.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.UsageAggregates.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Billing.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.Consumption.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.UsageAggregates.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Blueprint/Blueprint/Az.Blueprint.psd1 b/src/Blueprint/Blueprint/Az.Blueprint.psd1 index 4f426ddb095b..a002b167a566 100644 --- a/src/Blueprint/Blueprint/Az.Blueprint.psd1 +++ b/src/Blueprint/Blueprint/Az.Blueprint.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Blueprint.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Blueprint.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Blueprint.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Blueprint.format.ps1xml' +FormatsToProcess = 'Blueprint.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Blueprint.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Blueprint.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Cdn/Cdn/Az.Cdn.psd1 b/src/Cdn/Cdn/Az.Cdn.psd1 index ff0bb6a58152..f952f70553a3 100644 --- a/src/Cdn/Cdn/Az.Cdn.psd1 +++ b/src/Cdn/Cdn/Az.Cdn.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Cdn.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Cdn.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Cdn.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Cdn.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Cdn.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 index 40d0ce79bee8..5eb0af4091e1 100644 --- a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 +++ b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.CognitiveServices.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.CognitiveServices.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.CognitiveServices.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1 index 32bca8a3f658..7198b8548a63 100644 --- a/src/Compute/Compute/Az.Compute.psd1 +++ b/src/Compute/Compute/Az.Compute.psd1 @@ -57,8 +57,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Compute.dll', - '.\Microsoft.WindowsAzure.Storage.dll' +RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Compute.dll', + 'Microsoft.WindowsAzure.Storage.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -67,11 +67,11 @@ RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Compute.d # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Compute.format.ps1xml', '.\Compute.generated.format.ps1xml', - '.\Compute.Automation.generated.format.ps1xml' +FormatsToProcess = 'Compute.format.ps1xml', 'Compute.generated.format.ps1xml', + 'Compute.Automation.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Compute.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Compute.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 index 2587015f505f..aa0bb7e1e058 100644 --- a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 +++ b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', - '.\Microsoft.Azure.Management.ContainerInstance.dll' +RequiredAssemblies = 'AutoMapper.dll', + 'Microsoft.Azure.Management.ContainerInstance.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,10 +66,10 @@ RequiredAssemblies = '.\AutoMapper.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ContainerInstance.format.ps1xml' +FormatsToProcess = 'ContainerInstance.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 index 56daf37dad3e..6d4b76e12e65 100644 --- a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 +++ b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ContainerRegistry.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ContainerRegistry.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ContainerRegistry.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ContainerRegistry.format.ps1xml' +FormatsToProcess = 'ContainerRegistry.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataBox/DataBox/Az.DataBox.psd1 b/src/DataBox/DataBox/Az.DataBox.psd1 index db1994cd944a..5706b5d2700c 100644 --- a/src/DataBox/DataBox/Az.DataBox.psd1 +++ b/src/DataBox/DataBox/Az.DataBox.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataBox.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataBox.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,10 +66,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataBox.dll' # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = - '.\Microsoft.Azure.PowerShell.Cmdlets.DataBox.generated.format.ps1xml' + 'Microsoft.Azure.PowerShell.Cmdlets.DataBox.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataBox.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataBox.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 index 1fba0398d7b0..620b6d83231f 100644 --- a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 +++ b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 @@ -56,11 +56,11 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataFactory.dll', - '.\Microsoft.DataTransfer.Gateway.Encryption.dll', - '.\System.IO.FileSystem.AccessControl.dll', - '.\Microsoft.Azure.Management.DataFactories.dll', - '.\Microsoft.WindowsAzure.Storage.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataFactory.dll', + 'Microsoft.DataTransfer.Gateway.Encryption.dll', + 'System.IO.FileSystem.AccessControl.dll', + 'Microsoft.Azure.Management.DataFactories.dll', + 'Microsoft.WindowsAzure.Storage.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -69,11 +69,11 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataFactory.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\DataFactoryV2.format.ps1xml', '.\DataFactories.format.ps1xml' +FormatsToProcess = 'DataFactoryV2.format.ps1xml', 'DataFactories.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 index f8103420b3f5..7d4dacae37dc 100644 --- a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 +++ b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Analytics.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Analytics.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Analytics.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\DataLakeAnalytics.format.ps1xml' +FormatsToProcess = 'DataLakeAnalytics.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataLakeAnalytics.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataLakeAnalytics.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 index 4d35db72e266..dd4d436eaa06 100644 --- a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 +++ b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Store.dll', - '.\Microsoft.Azure.DataLake.Store.dll', '.\NLog.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Store.dll', + 'Microsoft.Azure.DataLake.Store.dll', 'NLog.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,10 +66,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Store.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\DataLakeStore.format.ps1xml' +FormatsToProcess = 'DataLakeStore.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataMigration/DataMigration/Az.DataMigration.psd1 b/src/DataMigration/DataMigration/Az.DataMigration.psd1 index dd24b1ef492f..8bf7eaeb4e9e 100644 --- a/src/DataMigration/DataMigration/Az.DataMigration.psd1 +++ b/src/DataMigration/DataMigration/Az.DataMigration.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataMigration.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataMigration.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataMigration.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataMigration.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataMigration.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataShare/DataShare/Az.DataShare.psd1 b/src/DataShare/DataShare/Az.DataShare.psd1 index ca6cf9b2f78a..46ef35dc091d 100644 --- a/src/DataShare/DataShare/Az.DataShare.psd1 +++ b/src/DataShare/DataShare/Az.DataShare.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.0'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataShare.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataShare.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,7 +66,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataShare.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataShare.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataShare.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 index 2312bed205f1..bb0b0501f321 100644 --- a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 +++ b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 @@ -55,7 +55,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DeploymentManager.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DeploymentManager.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -67,7 +67,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DeploymentManager.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 index 640055a2e554..ca8437c4a8c1 100644 --- a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 +++ b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DevSpaces.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DevSpaces.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DevSpaces.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DevSpaces.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DevSpaces.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 index 2a0e7628c56e..24d59a1f6447 100644 --- a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 +++ b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DevTestLabs.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DevTestLabs.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DevTestLabs.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\DevTestLabs.format.ps1xml' +FormatsToProcess = 'DevTestLabs.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DevTestLabs.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DevTestLabs.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 index 9f892de9e3ce..936104896dfc 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DeviceProvisioningServices.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DeviceProvisioningServices.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DeviceProvisioningServices.dl # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\DeviceProvisioningServices.format.ps1xml' +FormatsToProcess = 'DeviceProvisioningServices.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DeviceProvisioningServices.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DeviceProvisioningServices.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Dns/Dns/Az.Dns.psd1 b/src/Dns/Dns/Az.Dns.psd1 index a526ebf3d38d..3665acf11f46 100644 --- a/src/Dns/Dns/Az.Dns.psd1 +++ b/src/Dns/Dns/Az.Dns.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Dns.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Dns.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Dns.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Dns.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Dns.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/EventGrid/EventGrid/Az.EventGrid.psd1 b/src/EventGrid/EventGrid/Az.EventGrid.psd1 index daa73df759f3..50c3f890ea4c 100644 --- a/src/EventGrid/EventGrid/Az.EventGrid.psd1 +++ b/src/EventGrid/EventGrid/Az.EventGrid.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.EventGrid.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.EventGrid.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.EventGrid.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/EventHub/EventHub/Az.EventHub.psd1 b/src/EventHub/EventHub/Az.EventHub.psd1 index a9ed1d66c746..d7a2a6fc243e 100644 --- a/src/EventHub/EventHub/Az.EventHub.psd1 +++ b/src/EventHub/EventHub/Az.EventHub.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.EventHub.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.EventHub.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.EventHub.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\EventHub.format.ps1xml' +FormatsToProcess = 'EventHub.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 index eaf420377818..df9867f19a65 100644 --- a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 +++ b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.FrontDoor.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.FrontDoor.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.FrontDoor.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 index 319125bf6758..f5a9b5b44047 100644 --- a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 +++ b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.GuestConfiguration.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.GuestConfiguration.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -63,10 +63,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.GuestConfiguration.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\GuestConfiguration.format.ps1xml' +FormatsToProcess = 'GuestConfiguration.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/HDInsight/HDInsight/Az.HDInsight.psd1 b/src/HDInsight/HDInsight/Az.HDInsight.psd1 index ddc64baa9bee..f2a7414af0a5 100644 --- a/src/HDInsight/HDInsight/Az.HDInsight.psd1 +++ b/src/HDInsight/HDInsight/Az.HDInsight.psd1 @@ -56,9 +56,9 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.HDInsight.dll', - '.\Microsoft.Azure.Management.HDInsight.Job.dll', - '.\Microsoft.WindowsAzure.Storage.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.HDInsight.dll', + 'Microsoft.Azure.Management.HDInsight.Job.dll', + 'Microsoft.WindowsAzure.Storage.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -70,7 +70,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.HDInsight.dll', # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 index 5076821627cd..3cba188d9064 100644 --- a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 +++ b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.1'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.HealthcareApis.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.HealthcareApis.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.HealthcareApis.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/IotCentral/IotCentral/Az.IotCentral.psd1 b/src/IotCentral/IotCentral/Az.IotCentral.psd1 index 0d80ecdad888..4d9ebdd95413 100644 --- a/src/IotCentral/IotCentral/Az.IotCentral.psd1 +++ b/src/IotCentral/IotCentral/Az.IotCentral.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.IotCentral.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.IotCentral.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.IotCentral.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.IotCentral.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.IotCentral.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1 index 86da8f24d7e8..93f66a63c7dc 100644 --- a/src/IotHub/IotHub/Az.IotHub.psd1 +++ b/src/IotHub/IotHub/Az.IotHub.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.IotHub.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.IotHub.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.IotHub.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\IotHub.format.ps1xml' +FormatsToProcess = 'IotHub.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/KeyVault/KeyVault/Az.KeyVault.psd1 b/src/KeyVault/KeyVault/Az.KeyVault.psd1 index 1d693d816c5b..945c896c4f34 100644 --- a/src/KeyVault/KeyVault/Az.KeyVault.psd1 +++ b/src/KeyVault/KeyVault/Az.KeyVault.psd1 @@ -56,9 +56,9 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.KeyVault.dll', - '.\Microsoft.Azure.KeyVault.WebKey.dll', - '.\Microsoft.Azure.Management.KeyVault.dll' +RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll', + 'Microsoft.Azure.KeyVault.WebKey.dll', + 'Microsoft.Azure.Management.KeyVault.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -67,10 +67,10 @@ RequiredAssemblies = '.\Microsoft.Azure.KeyVault.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\KeyVault.format.ps1xml' +FormatsToProcess = 'KeyVault.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Kusto/Kusto/Az.Kusto.psd1 b/src/Kusto/Kusto/Az.Kusto.psd1 index e243f5c86970..dd2a1cdb1277 100644 --- a/src/Kusto/Kusto/Az.Kusto.psd1 +++ b/src/Kusto/Kusto/Az.Kusto.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Kusto.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Kusto.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,7 +66,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Kusto.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Kusto.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Kusto.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/LogicApp/LogicApp/Az.LogicApp.psd1 b/src/LogicApp/LogicApp/Az.LogicApp.psd1 index a0e4ee53365c..fb30f2266abc 100644 --- a/src/LogicApp/LogicApp/Az.LogicApp.psd1 +++ b/src/LogicApp/LogicApp/Az.LogicApp.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Logic.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Logic.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Logic.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\LogicApp.format.ps1xml' +FormatsToProcess = 'LogicApp.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.LogicApp.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.LogicApp.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 index e33533fe237a..457d504e1aeb 100644 --- a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 +++ b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.MachineLearning.dll', - '.\Microsoft.Azure.Management.MachineLearningCompute.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.MachineLearning.dll', + 'Microsoft.Azure.Management.MachineLearningCompute.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -69,8 +69,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.MachineLearning.dll', # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.MachineLearningCompute.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.MachineLearningCompute.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 index 97a1ab01331e..3a7591035aa5 100644 --- a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 +++ b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ManagedServiceIdentity.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ManagedServiceIdentity.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ManagedServiceIdentity.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 index e62b7409193f..7e2c5ea7a139 100644 --- a/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 +++ b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ManagedServices.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ManagedServices.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -64,10 +64,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ManagedServices.dll' # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = - '.\Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.generated.format.ps1xml' + 'Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 index 34b5b4715ae7..bb93408ecd95 100644 --- a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 +++ b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ManagementPartner.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ManagementPartner.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,7 +66,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ManagementPartner.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ManagementPartner.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ManagementPartner.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Maps/Maps/Az.Maps.psd1 b/src/Maps/Maps/Az.Maps.psd1 index 1bcdafd7153f..16073dbebc9c 100644 --- a/src/Maps/Maps/Az.Maps.psd1 +++ b/src/Maps/Maps/Az.Maps.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Maps.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Maps.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Maps.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Maps.format.ps1xml' +FormatsToProcess = 'Maps.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Maps.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Maps.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 index 295c74915397..d1b7a06921b9 100644 --- a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 +++ b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.MarketplaceOrdering.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.MarketplaceOrdering.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.MarketplaceOrdering.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\MarketplaceOrdering.format.ps1xml' +FormatsToProcess = 'MarketplaceOrdering.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.MarketplaceOrdering.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.MarketplaceOrdering.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Media/Media/Az.Media.psd1 b/src/Media/Media/Az.Media.psd1 index 20008b52824d..7008405d6e98 100644 --- a/src/Media/Media/Az.Media.psd1 +++ b/src/Media/Media/Az.Media.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Media.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Media.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Media.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Media.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Media.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/MixedReality/MixedReality/Az.MixedReality.psd1 b/src/MixedReality/MixedReality/Az.MixedReality.psd1 index a506fca712d3..827cabe739bc 100644 --- a/src/MixedReality/MixedReality/Az.MixedReality.psd1 +++ b/src/MixedReality/MixedReality/Az.MixedReality.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.MixedReality.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.MixedReality.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.MixedReality.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Monitor/Monitor/Az.Monitor.psd1 b/src/Monitor/Monitor/Az.Monitor.psd1 index efdcf1491d57..459d7531fdb8 100644 --- a/src/Monitor/Monitor/Az.Monitor.psd1 +++ b/src/Monitor/Monitor/Az.Monitor.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Monitor.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Monitor.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Monitor.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Monitor.format.ps1xml' +FormatsToProcess = 'Monitor.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index 5f64b5b043f5..451e60c5fd9f 100644 --- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 +++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.NetApp.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.NetApp.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.NetApp.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index ec80b10268d8..d8a786678d20 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Network.dll' +RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Network.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Network.d # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Network.format.ps1xml' +FormatsToProcess = 'Network.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Network.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Network.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 index d00a50ec7cfe..a102950028f1 100644 --- a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 +++ b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.NotificationHubs.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.NotificationHubs.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.NotificationHubs.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 index 5428ded7dee6..ce2686d2b987 100644 --- a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 +++ b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 @@ -54,8 +54,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.OperationalInsights.dll', - '.\Microsoft.Azure.OperationalInsights.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.OperationalInsights.dll', + 'Microsoft.Azure.OperationalInsights.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -64,10 +64,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.OperationalInsights.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\OperationalInsights.format.ps1xml' +FormatsToProcess = 'OperationalInsights.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Peering/Peering/Az.Peering.psd1 b/src/Peering/Peering/Az.Peering.psd1 index cc52d97fc746..67d9f1f38113 100644 --- a/src/Peering/Peering/Az.Peering.psd1 +++ b/src/Peering/Peering/Az.Peering.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Peering.dll', '.\AutoMapper.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Peering.dll', 'AutoMapper.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Peering.dll', '.\AutoMapper.d FormatsToProcess = 'Microsoft.Azure.PowerShell.Cmdlets.Peering.Common.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Peering.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Peering.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 index c21b9b903db5..c915712b416f 100644 --- a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 +++ b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.PolicyInsights.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.PolicyInsights.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.PolicyInsights.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\PolicyInsights.format.ps1xml' +FormatsToProcess = 'PolicyInsights.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 index 6374152bf81b..695b1f50e9c8 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 +++ b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.PowerBIEmbedded.dll', - '.\Microsoft.Azure.Management.PowerBIDedicated.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.PowerBIEmbedded.dll', + 'Microsoft.Azure.Management.PowerBIDedicated.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -69,8 +69,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.PowerBIEmbedded.dll', # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.PowerBIEmbedded.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.PowerBI.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.PowerBIEmbedded.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.PowerBI.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 index b9082f3e1f10..d7de6a57333d 100644 --- a/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 +++ b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.PrivateDns.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.PrivateDns.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.PrivateDns.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.PrivateDns.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.PrivateDns.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 index b0884555a7fa..366f9ecb902d 100644 --- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 +++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 @@ -57,17 +57,17 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Helpers.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Logger.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Providers.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.ServiceClientAdapter.dll', - '.\Microsoft.Azure.Management.RecoveryServices.Backup.dll', - '.\Microsoft.Azure.Management.RecoveryServices.dll', - '.\Microsoft.Azure.Management.RecoveryServices.SiteRecovery.dll', - '.\System.Configuration.ConfigurationManager.dll', - '.\TimeZoneConverter.dll' +RequiredAssemblies = 'AutoMapper.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Helpers.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Logger.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Providers.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.ServiceClientAdapter.dll', + 'Microsoft.Azure.Management.RecoveryServices.Backup.dll', + 'Microsoft.Azure.Management.RecoveryServices.dll', + 'Microsoft.Azure.Management.RecoveryServices.SiteRecovery.dll', + 'System.Configuration.ConfigurationManager.dll', + 'TimeZoneConverter.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -76,12 +76,12 @@ RequiredAssemblies = '.\AutoMapper.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\RecoveryServices.Backup.format.ps1xml' +FormatsToProcess = 'RecoveryServices.Backup.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/RedisCache/RedisCache/Az.RedisCache.psd1 b/src/RedisCache/RedisCache/Az.RedisCache.psd1 index b2b738a51e77..7407b4a32576 100644 --- a/src/RedisCache/RedisCache/Az.RedisCache.psd1 +++ b/src/RedisCache/RedisCache/Az.RedisCache.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Insights.dll', - '.\Microsoft.Azure.Management.Redis.dll' +RequiredAssemblies = 'Microsoft.Azure.Insights.dll', + 'Microsoft.Azure.Management.Redis.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,10 +66,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Insights.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\RedisCache.format.ps1xml' +FormatsToProcess = 'RedisCache.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.RedisCache.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.RedisCache.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Relay/Relay/Az.Relay.psd1 b/src/Relay/Relay/Az.Relay.psd1 index 586cac41df67..db7ca8c7d8f1 100644 --- a/src/Relay/Relay/Az.Relay.psd1 +++ b/src/Relay/Relay/Az.Relay.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Relay.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Relay.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Relay.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Relay.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Relay.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Reservations/Reservations/Az.Reservations.psd1 b/src/Reservations/Reservations/Az.Reservations.psd1 index d9dff192e471..992553c224d9 100644 --- a/src/Reservations/Reservations/Az.Reservations.psd1 +++ b/src/Reservations/Reservations/Az.Reservations.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Reservations.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Reservations.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Reservations.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Reservations.format.ps1xml' +FormatsToProcess = 'Reservations.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Reservations.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Reservations.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 index d9e8c39162dd..360840a9d1ce 100644 --- a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 +++ b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ResourceGraph.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ResourceGraph.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ResourceGraph.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ResourceGraph.format.ps1xml' +FormatsToProcess = 'ResourceGraph.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ResourceGraph.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ResourceGraph.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Resources/Resources/Az.Resources.psd1 b/src/Resources/Resources/Az.Resources.psd1 index 6c05774a8617..d494adf84ec1 100644 --- a/src/Resources/Resources/Az.Resources.psd1 +++ b/src/Resources/Resources/Az.Resources.psd1 @@ -57,15 +57,15 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Authorization.dll', - '.\Microsoft.Azure.Management.ResourceManager.dll', - '.\Microsoft.Azure.Management.ManagementGroups.dll', - '.\Microsoft.Extensions.Caching.Abstractions.dll', - '.\Microsoft.Extensions.Caching.Memory.dll', - '.\Microsoft.Extensions.DependencyInjection.Abstractions.dll', - '.\Microsoft.Extensions.Options.dll', - '.\Microsoft.Extensions.Primitives.dll', - '.\Microsoft.Azure.Graph.RBAC.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Authorization.dll', + 'Microsoft.Azure.Management.ResourceManager.dll', + 'Microsoft.Azure.Management.ManagementGroups.dll', + 'Microsoft.Extensions.Caching.Abstractions.dll', + 'Microsoft.Extensions.Caching.Memory.dll', + 'Microsoft.Extensions.DependencyInjection.Abstractions.dll', + 'Microsoft.Extensions.Options.dll', + 'Microsoft.Extensions.Primitives.dll', + 'Microsoft.Azure.Graph.RBAC.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -74,13 +74,13 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Authorization.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Resources.format.ps1xml', '.\ResourceManager.format.ps1xml', - '.\ResourceManager.generated.format.ps1xml', '.\Tags.format.ps1xml' +FormatsToProcess = 'Resources.format.ps1xml', 'ResourceManager.format.ps1xml', + 'ResourceManager.generated.format.ps1xml', 'Tags.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Resources.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.Tags.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Resources.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.Tags.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Search/Search/Az.Search.psd1 b/src/Search/Search/Az.Search.psd1 index e4ae6755f6e3..b009a39e7417 100644 --- a/src/Search/Search/Az.Search.psd1 +++ b/src/Search/Search/Az.Search.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Search.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Search.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Search.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Search.generated.format.ps1xml' +FormatsToProcess = 'Search.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Search.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Search.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Security/Security/Az.Security.psd1 b/src/Security/Security/Az.Security.psd1 index 7678895dfde5..21aa7c2c59a2 100644 --- a/src/Security/Security/Az.Security.psd1 +++ b/src/Security/Security/Az.Security.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.SecurityCenter.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.SecurityCenter.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.SecurityCenter.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Security.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Security.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 index 5231a7a1c953..85ddad4bcc59 100644 --- a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 +++ b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ServiceBus.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ServiceBus.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ServiceBus.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ServiceBus.format.ps1xml' +FormatsToProcess = 'ServiceBus.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 index ccb1e8d0bee3..ccd90c54370d 100644 --- a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 +++ b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 @@ -56,9 +56,9 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.KeyVault.dll', - '.\Microsoft.Azure.KeyVault.WebKey.dll', - '.\Microsoft.Azure.Management.ServiceFabric.dll' +RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll', + 'Microsoft.Azure.KeyVault.WebKey.dll', + 'Microsoft.Azure.Management.ServiceFabric.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -67,10 +67,10 @@ RequiredAssemblies = '.\Microsoft.Azure.KeyVault.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ServiceFabric.format.ps1xml' +FormatsToProcess = 'ServiceFabric.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/SignalR/SignalR/Az.SignalR.psd1 b/src/SignalR/SignalR/Az.SignalR.psd1 index 07d86cca0eee..7b524afc1a06 100644 --- a/src/SignalR/SignalR/Az.SignalR.psd1 +++ b/src/SignalR/SignalR/Az.SignalR.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.SignalR.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.SignalR.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.SignalR.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\SignalR.format.ps1xml' +FormatsToProcess = 'SignalR.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index 5350114324a9..49c2a71cfe8c 100644 --- a/src/Storage/Storage.Management/Az.Storage.psd1 +++ b/src/Storage/Storage.Management/Az.Storage.psd1 @@ -56,17 +56,17 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Storage.dll', - '.\Microsoft.Azure.Storage.Common.dll', - '.\Microsoft.Azure.Storage.Blob.dll', - '.\Microsoft.Azure.Storage.File.dll', - '.\Microsoft.Azure.Storage.Queue.dll', - '.\Microsoft.Azure.Cosmos.Table.dll', - '.\Microsoft.Azure.DocumentDB.Core.dll', - '.\Microsoft.Azure.Storage.DataMovement.dll', - '.\Microsoft.Azure.DocumentDB.Core.dll', - '.\Microsoft.OData.Core.dll', '.\Microsoft.OData.Edm.dll', - '.\Microsoft.Spatial.dll', '.\Microsoft.Azure.KeyVault.Core.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Storage.dll', + 'Microsoft.Azure.Storage.Common.dll', + 'Microsoft.Azure.Storage.Blob.dll', + 'Microsoft.Azure.Storage.File.dll', + 'Microsoft.Azure.Storage.Queue.dll', + 'Microsoft.Azure.Cosmos.Table.dll', + 'Microsoft.Azure.DocumentDB.Core.dll', + 'Microsoft.Azure.Storage.DataMovement.dll', + 'Microsoft.Azure.DocumentDB.Core.dll', + 'Microsoft.OData.Core.dll', 'Microsoft.OData.Edm.dll', + 'Microsoft.Spatial.dll', 'Microsoft.Azure.KeyVault.Core.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -75,12 +75,12 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Storage.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Storage.Management.format.ps1xml', '.\Storage.format.ps1xml', - '.\Storage.generated.format.ps1xml' +FormatsToProcess = 'Storage.Management.format.ps1xml', 'Storage.format.ps1xml', + 'Storage.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.Storage.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.Storage.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/StorageSync/StorageSync/Az.StorageSync.psd1 b/src/StorageSync/StorageSync/Az.StorageSync.psd1 index 050937bdf85f..ff96353ec8c4 100644 --- a/src/StorageSync/StorageSync/Az.StorageSync.psd1 +++ b/src/StorageSync/StorageSync/Az.StorageSync.psd1 @@ -54,8 +54,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.StorageSync.dll', - '.\System.Management.dll', '.\System.CodeDom.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.StorageSync.dll', + 'System.Management.dll', 'System.CodeDom.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -64,10 +64,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.StorageSync.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\StorageSync.format.ps1xml' +FormatsToProcess = 'StorageSync.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.StorageSync.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.StorageSync.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 index d9d84412ef34..75c747c8064b 100644 --- a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 +++ b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.StreamAnalytics.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.StreamAnalytics.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.StreamAnalytics.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\StreamAnalytics.format.ps1xml' +FormatsToProcess = 'StreamAnalytics.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Subscription/Subscription/Az.Subscription.psd1 b/src/Subscription/Subscription/Az.Subscription.psd1 index 6959917f6350..268c79c3b66f 100644 --- a/src/Subscription/Subscription/Az.Subscription.psd1 +++ b/src/Subscription/Subscription/Az.Subscription.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Subscription.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Subscription.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -63,10 +63,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Subscription.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Subscription.format.ps1xml' +FormatsToProcess = 'Subscription.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Subscription.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Subscription.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 index a49328331c7c..8810bb5b77df 100644 --- a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 +++ b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.TrafficManager.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.TrafficManager.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.TrafficManager.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.TrafficManager.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.TrafficManager.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1 index 4fb3332147ca..551f00f96bb5 100644 --- a/src/Websites/Websites/Az.Websites.psd1 +++ b/src/Websites/Websites/Az.Websites.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Websites.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Websites.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Websites.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Websites.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Websites.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/tools/CheckAssemblies.ps1 b/tools/CheckAssemblies.ps1 index cc9895587b1d..096446b15166 100644 --- a/tools/CheckAssemblies.ps1 +++ b/tools/CheckAssemblies.ps1 @@ -61,7 +61,7 @@ foreach ($ModuleManifest in $ModuleManifestFiles) { } } - $LoadedAssemblies = $LoadedAssemblies | ForEach-Object { $_.Substring(2).Replace(".dll", "") } + $LoadedAssemblies = $LoadedAssemblies | ForEach-Object { $_.Replace(".dll", "") } $Found = @() foreach ($Assembly in $Assemblies) { From 084449f1592860de588a9233752eee3f93e6d991 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Sat, 5 Oct 2019 11:13:55 +0800 Subject: [PATCH 05/15] using relative path for Az.Sql.psd1 by removing the beginning '.\' --- src/Sql/Sql/Az.Sql.psd1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index 0f2de16ccc8b..c5debcbe0371 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -56,20 +56,20 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Sql.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -TypesToProcess = '.\Sql.types.ps1xml' +TypesToProcess = 'Sql.types.ps1xml' # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Sql.format.ps1xml' +FormatsToProcess = 'Sql.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() From 78295818ccd96ff97250bf6af2a253239888be3a Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Sat, 5 Oct 2019 12:35:52 +0800 Subject: [PATCH 06/15] make change to '*.ps1xml' only --- src/Sql/Sql/Az.Sql.psd1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index c5debcbe0371..be18327bd51d 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', - 'Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' +RequiredAssemblies = '.\Microsoft.Azure.Management.Sql.dll', + '.\Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -69,7 +69,7 @@ TypesToProcess = 'Sql.types.ps1xml' FormatsToProcess = 'Sql.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') +NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() From 41d101018225f569c0c103b7f04dc5e43ba54100 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Tue, 8 Oct 2019 16:02:54 +0800 Subject: [PATCH 07/15] again, use relative path for RequiredAssemblies and NestedModules --- src/Sql/Sql/Az.Sql.psd1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index be18327bd51d..c5debcbe0371 100644 --- a/src/Sql/Sql/Az.Sql.psd1 +++ b/src/Sql/Sql/Az.Sql.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Sql.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -69,7 +69,7 @@ TypesToProcess = 'Sql.types.ps1xml' FormatsToProcess = 'Sql.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Sql.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() From d5a3809756f75caf92cacdb982340bcffbfb2d62 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Tue, 8 Oct 2019 19:48:17 +0800 Subject: [PATCH 08/15] apply relative path to all modules' psd1 file, also update tools/CheckAssemblies.ps1 to use the new paths --- src/Accounts/Accounts/Az.Accounts.psd1 | 50 +++++++++---------- src/Advisor/Advisor/Az.Advisor.psd1 | 6 +-- src/Aks/Aks/Az.Aks.psd1 | 4 +- .../AlertsManagement/Az.AlertsManagement.psd1 | 6 +-- .../AnalysisServices/Az.AnalysisServices.psd1 | 6 +-- .../ApiManagement/Az.ApiManagement.psd1 | 14 +++--- .../Az.ApplicationInsights.psd1 | 6 +-- .../Attestation/Az.Attestation.psd1 | 4 +- src/Automation/Automation/Az.Automation.psd1 | 6 +-- src/Batch/Batch/Az.Batch.psd1 | 16 +++--- src/Billing/Billing/Az.Billing.psd1 | 16 +++--- src/Blueprint/Blueprint/Az.Blueprint.psd1 | 6 +-- src/Cdn/Cdn/Az.Cdn.psd1 | 4 +- .../Az.CognitiveServices.psd1 | 4 +- src/Compute/Compute/Az.Compute.psd1 | 10 ++-- .../Az.ContainerInstance.psd1 | 8 +-- .../Az.ContainerRegistry.psd1 | 6 +-- src/DataBox/DataBox/Az.DataBox.psd1 | 6 +-- .../DataFactoryV2/Az.DataFactory.psd1 | 16 +++--- .../Az.DataLakeAnalytics.psd1 | 6 +-- .../DataLakeStore/Az.DataLakeStore.psd1 | 8 +-- .../DataMigration/Az.DataMigration.psd1 | 4 +- src/DataShare/DataShare/Az.DataShare.psd1 | 4 +- .../Az.DeploymentManager.psd1 | 4 +- src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 | 4 +- .../DevTestLabs/Az.DevTestLabs.psd1 | 6 +-- .../Az.DeviceProvisioningServices.psd1 | 6 +-- src/Dns/Dns/Az.Dns.psd1 | 4 +- src/EventGrid/EventGrid/Az.EventGrid.psd1 | 4 +- src/EventHub/EventHub/Az.EventHub.psd1 | 6 +-- src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 | 4 +- .../Az.GuestConfiguration.psd1 | 6 +-- src/HDInsight/HDInsight/Az.HDInsight.psd1 | 8 +-- .../HealthcareApis/Az.HealthcareApis.psd1 | 4 +- src/IotCentral/IotCentral/Az.IotCentral.psd1 | 4 +- src/IotHub/IotHub/Az.IotHub.psd1 | 6 +-- src/KeyVault/KeyVault/Az.KeyVault.psd1 | 10 ++-- src/Kusto/Kusto/Az.Kusto.psd1 | 4 +- src/LogicApp/LogicApp/Az.LogicApp.psd1 | 6 +-- .../MachineLearning/Az.MachineLearning.psd1 | 8 +-- .../Az.ManagedServiceIdentity.psd1 | 4 +- .../ManagedServices/Az.ManagedServices.psd1 | 6 +-- .../Az.ManagementPartner.psd1 | 4 +- src/Maps/Maps/Az.Maps.psd1 | 6 +-- .../Az.MarketplaceOrdering.psd1 | 6 +-- src/Media/Media/Az.Media.psd1 | 4 +- .../MixedReality/Az.MixedReality.psd1 | 4 +- src/Monitor/Monitor/Az.Monitor.psd1 | 6 +-- .../NetAppFiles/Az.NetAppFiles.psd1 | 4 +- src/Network/Network/Az.Network.psd1 | 6 +-- .../NotificationHubs/Az.NotificationHubs.psd1 | 4 +- .../Az.OperationalInsights.psd1 | 8 +-- src/Peering/Peering/Az.Peering.psd1 | 4 +- .../PolicyInsights/Az.PolicyInsights.psd1 | 6 +-- .../PowerBIEmbedded/Az.PowerBIEmbedded.psd1 | 8 +-- src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 | 4 +- .../RecoveryServices/Az.RecoveryServices.psd1 | 30 +++++------ src/RedisCache/RedisCache/Az.RedisCache.psd1 | 8 +-- src/Relay/Relay/Az.Relay.psd1 | 4 +- .../Reservations/Az.Reservations.psd1 | 6 +-- .../ResourceGraph/Az.ResourceGraph.psd1 | 6 +-- src/Resources/Resources/Az.Resources.psd1 | 28 +++++------ src/Search/Search/Az.Search.psd1 | 6 +-- src/Security/Security/Az.Security.psd1 | 4 +- src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 | 6 +-- .../ServiceFabric/Az.ServiceFabric.psd1 | 10 ++-- src/SignalR/SignalR/Az.SignalR.psd1 | 6 +-- .../Storage.Management/Az.Storage.psd1 | 30 +++++------ .../StorageSync/Az.StorageSync.psd1 | 8 +-- .../StreamAnalytics/Az.StreamAnalytics.psd1 | 6 +-- .../Subscription/Az.Subscription.psd1 | 6 +-- .../TrafficManager/Az.TrafficManager.psd1 | 4 +- src/Websites/Websites/Az.Websites.psd1 | 4 +- tools/CheckAssemblies.ps1 | 2 +- 74 files changed, 284 insertions(+), 284 deletions(-) diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1 index 0beb77c033cf..19dbca56c6ce 100644 --- a/src/Accounts/Accounts/Az.Accounts.psd1 +++ b/src/Accounts/Accounts/Az.Accounts.psd1 @@ -56,29 +56,29 @@ DotNetFrameworkVersion = '4.7.2' # RequiredModules = @() # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.PowerShell.Authentication.Abstractions.dll', - '.\Microsoft.Azure.PowerShell.Authentication.dll', - '.\Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll', - '.\Microsoft.Azure.PowerShell.Clients.Authorization.dll', - '.\Microsoft.Azure.PowerShell.Clients.Compute.dll', - '.\Microsoft.Azure.PowerShell.Clients.Graph.Rbac.dll', - '.\Microsoft.Azure.PowerShell.Clients.Monitor.dll', - '.\Microsoft.Azure.PowerShell.Clients.Network.dll', - '.\Microsoft.Azure.PowerShell.Clients.PolicyInsights.dll', - '.\Microsoft.Azure.PowerShell.Clients.ResourceManager.dll', - '.\Microsoft.Azure.PowerShell.Common.dll', - '.\Microsoft.Azure.PowerShell.Storage.dll', - '.\Microsoft.Azure.PowerShell.Clients.Storage.Management.dll', - '.\Microsoft.Azure.PowerShell.Clients.KeyVault.dll', - '.\Microsoft.Azure.PowerShell.Clients.Websites.dll', - '.\Hyak.Common.dll', '.\Microsoft.ApplicationInsights.dll', - '.\Microsoft.Azure.Common.dll', - '.\Microsoft.Rest.ClientRuntime.dll', - '.\Microsoft.Rest.ClientRuntime.Azure.dll', - '.\Microsoft.WindowsAzure.Storage.dll', - '.\Microsoft.WindowsAzure.Storage.DataMovement.dll', - '.\Microsoft.Azure.PowerShell.Clients.Aks.dll', - '.\Microsoft.Azure.PowerShell.Strategies.dll' +RequiredAssemblies = 'Microsoft.Azure.PowerShell.Authentication.Abstractions.dll', + 'Microsoft.Azure.PowerShell.Authentication.dll', + 'Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll', + 'Microsoft.Azure.PowerShell.Clients.Authorization.dll', + 'Microsoft.Azure.PowerShell.Clients.Compute.dll', + 'Microsoft.Azure.PowerShell.Clients.Graph.Rbac.dll', + 'Microsoft.Azure.PowerShell.Clients.Monitor.dll', + 'Microsoft.Azure.PowerShell.Clients.Network.dll', + 'Microsoft.Azure.PowerShell.Clients.PolicyInsights.dll', + 'Microsoft.Azure.PowerShell.Clients.ResourceManager.dll', + 'Microsoft.Azure.PowerShell.Common.dll', + 'Microsoft.Azure.PowerShell.Storage.dll', + 'Microsoft.Azure.PowerShell.Clients.Storage.Management.dll', + 'Microsoft.Azure.PowerShell.Clients.KeyVault.dll', + 'Microsoft.Azure.PowerShell.Clients.Websites.dll', + 'Hyak.Common.dll', 'Microsoft.ApplicationInsights.dll', + 'Microsoft.Azure.Common.dll', + 'Microsoft.Rest.ClientRuntime.dll', + 'Microsoft.Rest.ClientRuntime.Azure.dll', + 'Microsoft.WindowsAzure.Storage.dll', + 'Microsoft.WindowsAzure.Storage.DataMovement.dll', + 'Microsoft.Azure.PowerShell.Clients.Aks.dll', + 'Microsoft.Azure.PowerShell.Strategies.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -87,10 +87,10 @@ RequiredAssemblies = '.\Microsoft.Azure.PowerShell.Authentication.Abstractions.d # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Accounts.format.ps1xml', '.\Accounts.generated.format.ps1xml' +FormatsToProcess = 'Accounts.format.ps1xml', 'Accounts.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Advisor/Advisor/Az.Advisor.psd1 b/src/Advisor/Advisor/Az.Advisor.psd1 index b3b7ce0bab61..20a98fe433b0 100644 --- a/src/Advisor/Advisor/Az.Advisor.psd1 +++ b/src/Advisor/Advisor/Az.Advisor.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Advisor.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Advisor.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -63,10 +63,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Advisor.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Advisor.format.ps1xml' +FormatsToProcess = 'Advisor.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Advisor.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Advisor.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Aks/Aks/Az.Aks.psd1 b/src/Aks/Aks/Az.Aks.psd1 index e898b833463d..3ca0ba09840b 100644 --- a/src/Aks/Aks/Az.Aks.psd1 +++ b/src/Aks/Aks/Az.Aks.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\YamlDotNet.dll', '.\AutoMapper.dll' +RequiredAssemblies = 'YamlDotNet.dll', 'AutoMapper.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\YamlDotNet.dll', '.\AutoMapper.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Aks.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Aks.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 index 63be92e1d11b..f083cf32463a 100644 --- a/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 +++ b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.AlertsManagement.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.AlertsManagement.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.AlertsManagement.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.generated.format.ps1xml' +FormatsToProcess = 'Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 index 208380d3f57c..cccfb3a89d6a 100644 --- a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 +++ b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Analysis.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,8 +68,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 index a030d947925e..c166bfd3622e 100644 --- a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 +++ b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 @@ -56,9 +56,9 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', - '.\Microsoft.Azure.Management.ApiManagement.dll', - '.\Microsoft.WindowsAzure.Storage.dll' +RequiredAssemblies = 'AutoMapper.dll', + 'Microsoft.Azure.Management.ApiManagement.dll', + 'Microsoft.WindowsAzure.Storage.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,12 +68,12 @@ RequiredAssemblies = '.\AutoMapper.dll', # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = - '.\Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.generated.format.ps1xml', - '.\Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.generated.format.ps1xml' + 'Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.generated.format.ps1xml', + 'Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 index 1ad66862425c..645bd6dad474 100644 --- a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 +++ b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ApplicationInsights.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ApplicationInsights.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ApplicationInsights.format.ps1xml' +FormatsToProcess = 'ApplicationInsights.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Attestation/Attestation/Az.Attestation.psd1 b/src/Attestation/Attestation/Az.Attestation.psd1 index 5b7e2b19e5b3..7b4bb77a0cb5 100644 --- a/src/Attestation/Attestation/Az.Attestation.psd1 +++ b/src/Attestation/Attestation/Az.Attestation.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Attestation.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Attestation.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Attestation.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Attestation.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Attestation.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Automation/Automation/Az.Automation.psd1 b/src/Automation/Automation/Az.Automation.psd1 index 35edb1a9671c..992063c52de1 100644 --- a/src/Automation/Automation/Az.Automation.psd1 +++ b/src/Automation/Automation/Az.Automation.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Automation.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Automation.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Automation.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Automation.format.ps1xml' +FormatsToProcess = 'Automation.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Automation.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Automation.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Batch/Batch/Az.Batch.psd1 b/src/Batch/Batch/Az.Batch.psd1 index ba4852ea6277..ae3629232976 100644 --- a/src/Batch/Batch/Az.Batch.psd1 +++ b/src/Batch/Batch/Az.Batch.psd1 @@ -56,12 +56,12 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Batch.dll', - '.\Microsoft.Azure.Management.Batch.dll', - '.\Microsoft.Extensions.Primitives.dll', - '.\System.Runtime.CompilerServices.Unsafe.dll', - '.\Microsoft.WindowsAzure.Storage.dll', - '.\Microsoft.AspNetCore.WebUtilities.dll' +RequiredAssemblies = 'Microsoft.Azure.Batch.dll', + 'Microsoft.Azure.Management.Batch.dll', + 'Microsoft.Extensions.Primitives.dll', + 'System.Runtime.CompilerServices.Unsafe.dll', + 'Microsoft.WindowsAzure.Storage.dll', + 'Microsoft.AspNetCore.WebUtilities.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -70,10 +70,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Batch.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Batch.format.ps1xml' +FormatsToProcess = 'Batch.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Batch.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Batch.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Billing/Billing/Az.Billing.psd1 b/src/Billing/Billing/Az.Billing.psd1 index 0e94d19f73b9..d61f554c2d93 100644 --- a/src/Billing/Billing/Az.Billing.psd1 +++ b/src/Billing/Billing/Az.Billing.psd1 @@ -56,9 +56,9 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Billing.dll', - '.\Microsoft.Azure.Management.Consumption.dll', - '.\Microsoft.Azure.Commerce.UsageAggregates.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Billing.dll', + 'Microsoft.Azure.Management.Consumption.dll', + 'Microsoft.Azure.Commerce.UsageAggregates.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -67,13 +67,13 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Billing.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Billing.format.ps1xml', '.\Consumption.format.ps1xml', - '.\UsageAggregates.format.ps1xml' +FormatsToProcess = 'Billing.format.ps1xml', 'Consumption.format.ps1xml', + 'UsageAggregates.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Billing.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.Consumption.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.UsageAggregates.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Billing.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.Consumption.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.UsageAggregates.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Blueprint/Blueprint/Az.Blueprint.psd1 b/src/Blueprint/Blueprint/Az.Blueprint.psd1 index 8d2f830b4f3a..074830805cbf 100644 --- a/src/Blueprint/Blueprint/Az.Blueprint.psd1 +++ b/src/Blueprint/Blueprint/Az.Blueprint.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Blueprint.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Blueprint.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Blueprint.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Blueprint.format.ps1xml' +FormatsToProcess = 'Blueprint.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Blueprint.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Blueprint.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Cdn/Cdn/Az.Cdn.psd1 b/src/Cdn/Cdn/Az.Cdn.psd1 index 8eacdfb65b46..3ec03d9fd09d 100644 --- a/src/Cdn/Cdn/Az.Cdn.psd1 +++ b/src/Cdn/Cdn/Az.Cdn.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Cdn.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Cdn.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Cdn.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Cdn.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Cdn.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 index 7cb9a7ae0c04..763977ec8b69 100644 --- a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 +++ b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.CognitiveServices.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.CognitiveServices.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.CognitiveServices.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1 index f1840aa22319..8b6d4f21d69d 100644 --- a/src/Compute/Compute/Az.Compute.psd1 +++ b/src/Compute/Compute/Az.Compute.psd1 @@ -57,8 +57,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Compute.dll', - '.\Microsoft.WindowsAzure.Storage.dll' +RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Compute.dll', + 'Microsoft.WindowsAzure.Storage.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -67,11 +67,11 @@ RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Compute.d # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Compute.format.ps1xml', '.\Compute.generated.format.ps1xml', - '.\Compute.Automation.generated.format.ps1xml' +FormatsToProcess = 'Compute.format.ps1xml', 'Compute.generated.format.ps1xml', + 'Compute.Automation.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Compute.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Compute.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 index 6dc52d3a3a0a..19d053f2cf8d 100644 --- a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 +++ b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', - '.\Microsoft.Azure.Management.ContainerInstance.dll' +RequiredAssemblies = 'AutoMapper.dll', + 'Microsoft.Azure.Management.ContainerInstance.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,10 +66,10 @@ RequiredAssemblies = '.\AutoMapper.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ContainerInstance.format.ps1xml' +FormatsToProcess = 'ContainerInstance.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 index 3bb3f1defb3e..363bbd77abdf 100644 --- a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 +++ b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ContainerRegistry.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ContainerRegistry.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ContainerRegistry.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ContainerRegistry.format.ps1xml' +FormatsToProcess = 'ContainerRegistry.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataBox/DataBox/Az.DataBox.psd1 b/src/DataBox/DataBox/Az.DataBox.psd1 index cf3357f90def..d1c873c73859 100644 --- a/src/DataBox/DataBox/Az.DataBox.psd1 +++ b/src/DataBox/DataBox/Az.DataBox.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataBox.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataBox.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,10 +66,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataBox.dll' # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = - '.\Microsoft.Azure.PowerShell.Cmdlets.DataBox.generated.format.ps1xml' + 'Microsoft.Azure.PowerShell.Cmdlets.DataBox.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataBox.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataBox.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 index fb90ec4f9e6a..3baa39cf9bf4 100644 --- a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 +++ b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 @@ -56,11 +56,11 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataFactory.dll', - '.\Microsoft.DataTransfer.Gateway.Encryption.dll', - '.\System.IO.FileSystem.AccessControl.dll', - '.\Microsoft.Azure.Management.DataFactories.dll', - '.\Microsoft.WindowsAzure.Storage.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataFactory.dll', + 'Microsoft.DataTransfer.Gateway.Encryption.dll', + 'System.IO.FileSystem.AccessControl.dll', + 'Microsoft.Azure.Management.DataFactories.dll', + 'Microsoft.WindowsAzure.Storage.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -69,11 +69,11 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataFactory.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\DataFactoryV2.format.ps1xml', '.\DataFactories.format.ps1xml' +FormatsToProcess = 'DataFactoryV2.format.ps1xml', 'DataFactories.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.DataFactories.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 index b66345bcbc85..e97375afdb88 100644 --- a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 +++ b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Analytics.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Analytics.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Analytics.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\DataLakeAnalytics.format.ps1xml' +FormatsToProcess = 'DataLakeAnalytics.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataLakeAnalytics.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataLakeAnalytics.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 index b92972fd09db..e7c8d4b0a1a8 100644 --- a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 +++ b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Store.dll', - '.\Microsoft.Azure.DataLake.Store.dll', '.\NLog.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Store.dll', + 'Microsoft.Azure.DataLake.Store.dll', 'NLog.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,10 +66,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataLake.Store.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\DataLakeStore.format.ps1xml' +FormatsToProcess = 'DataLakeStore.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataMigration/DataMigration/Az.DataMigration.psd1 b/src/DataMigration/DataMigration/Az.DataMigration.psd1 index 2038c82a5987..a5f7fb8be869 100644 --- a/src/DataMigration/DataMigration/Az.DataMigration.psd1 +++ b/src/DataMigration/DataMigration/Az.DataMigration.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataMigration.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataMigration.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataMigration.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataMigration.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataMigration.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataShare/DataShare/Az.DataShare.psd1 b/src/DataShare/DataShare/Az.DataShare.psd1 index 650e16b05826..2c6b1e42b1bf 100644 --- a/src/DataShare/DataShare/Az.DataShare.psd1 +++ b/src/DataShare/DataShare/Az.DataShare.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DataShare.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DataShare.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,7 +66,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DataShare.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataShare.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataShare.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 index 0fc4ad7172e4..e7cb8eba1e98 100644 --- a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 +++ b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 @@ -55,7 +55,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DeploymentManager.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DeploymentManager.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -67,7 +67,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DeploymentManager.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DeploymentManager.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 index 861cd0abe08b..996a21a873ea 100644 --- a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 +++ b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DevSpaces.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DevSpaces.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DevSpaces.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DevSpaces.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DevSpaces.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 index 50c2420c4a91..5def90614273 100644 --- a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 +++ b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DevTestLabs.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DevTestLabs.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DevTestLabs.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\DevTestLabs.format.ps1xml' +FormatsToProcess = 'DevTestLabs.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DevTestLabs.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DevTestLabs.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 index 19411eb828a8..83cdac5b84e6 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.DeviceProvisioningServices.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.DeviceProvisioningServices.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.DeviceProvisioningServices.dl # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\DeviceProvisioningServices.format.ps1xml' +FormatsToProcess = 'DeviceProvisioningServices.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DeviceProvisioningServices.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DeviceProvisioningServices.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Dns/Dns/Az.Dns.psd1 b/src/Dns/Dns/Az.Dns.psd1 index 7f0482f66be8..4f38e8183f1a 100644 --- a/src/Dns/Dns/Az.Dns.psd1 +++ b/src/Dns/Dns/Az.Dns.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Dns.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Dns.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Dns.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Dns.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Dns.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/EventGrid/EventGrid/Az.EventGrid.psd1 b/src/EventGrid/EventGrid/Az.EventGrid.psd1 index 580038782540..0d06701053e5 100644 --- a/src/EventGrid/EventGrid/Az.EventGrid.psd1 +++ b/src/EventGrid/EventGrid/Az.EventGrid.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.EventGrid.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.EventGrid.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.EventGrid.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/EventHub/EventHub/Az.EventHub.psd1 b/src/EventHub/EventHub/Az.EventHub.psd1 index 92d1643d9bbd..eecfb84c3a63 100644 --- a/src/EventHub/EventHub/Az.EventHub.psd1 +++ b/src/EventHub/EventHub/Az.EventHub.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.EventHub.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.EventHub.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.EventHub.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\EventHub.format.ps1xml' +FormatsToProcess = 'EventHub.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 index 463e9e64ed75..64eab0471928 100644 --- a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 +++ b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.FrontDoor.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.FrontDoor.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.FrontDoor.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 index a84e02dc4434..295d1b6e521e 100644 --- a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 +++ b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.GuestConfiguration.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.GuestConfiguration.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -63,10 +63,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.GuestConfiguration.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\GuestConfiguration.format.ps1xml' +FormatsToProcess = 'GuestConfiguration.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/HDInsight/HDInsight/Az.HDInsight.psd1 b/src/HDInsight/HDInsight/Az.HDInsight.psd1 index f3a0ce4ad999..325d0dfff0e8 100644 --- a/src/HDInsight/HDInsight/Az.HDInsight.psd1 +++ b/src/HDInsight/HDInsight/Az.HDInsight.psd1 @@ -56,9 +56,9 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.HDInsight.dll', - '.\Microsoft.Azure.Management.HDInsight.Job.dll', - '.\Microsoft.WindowsAzure.Storage.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.HDInsight.dll', + 'Microsoft.Azure.Management.HDInsight.Job.dll', + 'Microsoft.WindowsAzure.Storage.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -70,7 +70,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.HDInsight.dll', # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 index 103bee1cd781..d6afd030662c 100644 --- a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 +++ b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.HealthcareApis.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.HealthcareApis.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.HealthcareApis.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.HealthcareApis.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/IotCentral/IotCentral/Az.IotCentral.psd1 b/src/IotCentral/IotCentral/Az.IotCentral.psd1 index 2dc8101fe889..11553b6f99ea 100644 --- a/src/IotCentral/IotCentral/Az.IotCentral.psd1 +++ b/src/IotCentral/IotCentral/Az.IotCentral.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.IotCentral.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.IotCentral.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.IotCentral.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.IotCentral.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.IotCentral.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1 index 5c3c1afe350d..bfb2a00e6560 100644 --- a/src/IotHub/IotHub/Az.IotHub.psd1 +++ b/src/IotHub/IotHub/Az.IotHub.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.IotHub.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.IotHub.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.IotHub.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\IotHub.format.ps1xml' +FormatsToProcess = 'IotHub.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/KeyVault/KeyVault/Az.KeyVault.psd1 b/src/KeyVault/KeyVault/Az.KeyVault.psd1 index 5c40f77b2817..e74173eb406f 100644 --- a/src/KeyVault/KeyVault/Az.KeyVault.psd1 +++ b/src/KeyVault/KeyVault/Az.KeyVault.psd1 @@ -56,9 +56,9 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.KeyVault.dll', - '.\Microsoft.Azure.KeyVault.WebKey.dll', - '.\Microsoft.Azure.Management.KeyVault.dll' +RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll', + 'Microsoft.Azure.KeyVault.WebKey.dll', + 'Microsoft.Azure.Management.KeyVault.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -67,10 +67,10 @@ RequiredAssemblies = '.\Microsoft.Azure.KeyVault.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\KeyVault.format.ps1xml' +FormatsToProcess = 'KeyVault.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Kusto/Kusto/Az.Kusto.psd1 b/src/Kusto/Kusto/Az.Kusto.psd1 index e861d26db278..1f61fbe1df29 100644 --- a/src/Kusto/Kusto/Az.Kusto.psd1 +++ b/src/Kusto/Kusto/Az.Kusto.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Kusto.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Kusto.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,7 +66,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Kusto.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Kusto.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Kusto.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/LogicApp/LogicApp/Az.LogicApp.psd1 b/src/LogicApp/LogicApp/Az.LogicApp.psd1 index 8b636ec73a55..1d13cb44434c 100644 --- a/src/LogicApp/LogicApp/Az.LogicApp.psd1 +++ b/src/LogicApp/LogicApp/Az.LogicApp.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Logic.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Logic.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Logic.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\LogicApp.format.ps1xml' +FormatsToProcess = 'LogicApp.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.LogicApp.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.LogicApp.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 index 97ca9916691f..ee36de01a9c6 100644 --- a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 +++ b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.MachineLearning.dll', - '.\Microsoft.Azure.Management.MachineLearningCompute.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.MachineLearning.dll', + 'Microsoft.Azure.Management.MachineLearningCompute.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -69,8 +69,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.MachineLearning.dll', # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.MachineLearningCompute.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.MachineLearningCompute.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 index 8422e8541be0..26ecfa4cb084 100644 --- a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 +++ b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ManagedServiceIdentity.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ManagedServiceIdentity.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ManagedServiceIdentity.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 index 80b836b23d40..47001a5228f4 100644 --- a/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 +++ b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ManagedServices.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ManagedServices.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -64,10 +64,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ManagedServices.dll' # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = - '.\Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.generated.format.ps1xml' + 'Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 index f8ac4d3311aa..90870faba82d 100644 --- a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 +++ b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ManagementPartner.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ManagementPartner.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,7 +66,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ManagementPartner.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ManagementPartner.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ManagementPartner.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Maps/Maps/Az.Maps.psd1 b/src/Maps/Maps/Az.Maps.psd1 index 093010d98ee6..21f29096a319 100644 --- a/src/Maps/Maps/Az.Maps.psd1 +++ b/src/Maps/Maps/Az.Maps.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Maps.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Maps.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Maps.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Maps.format.ps1xml' +FormatsToProcess = 'Maps.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Maps.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Maps.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 index 4ea99a77c783..234e4cb00a71 100644 --- a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 +++ b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.MarketplaceOrdering.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.MarketplaceOrdering.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.MarketplaceOrdering.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\MarketplaceOrdering.format.ps1xml' +FormatsToProcess = 'MarketplaceOrdering.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.MarketplaceOrdering.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.MarketplaceOrdering.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Media/Media/Az.Media.psd1 b/src/Media/Media/Az.Media.psd1 index f10024d75f2e..7709fccdcec0 100644 --- a/src/Media/Media/Az.Media.psd1 +++ b/src/Media/Media/Az.Media.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Media.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Media.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Media.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Media.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Media.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/MixedReality/MixedReality/Az.MixedReality.psd1 b/src/MixedReality/MixedReality/Az.MixedReality.psd1 index 8fe30443f304..6e5eb18ef2d4 100644 --- a/src/MixedReality/MixedReality/Az.MixedReality.psd1 +++ b/src/MixedReality/MixedReality/Az.MixedReality.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.MixedReality.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.MixedReality.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.MixedReality.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Monitor/Monitor/Az.Monitor.psd1 b/src/Monitor/Monitor/Az.Monitor.psd1 index f14c86541aa8..6623b4c15a07 100644 --- a/src/Monitor/Monitor/Az.Monitor.psd1 +++ b/src/Monitor/Monitor/Az.Monitor.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Monitor.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Monitor.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Monitor.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Monitor.format.ps1xml' +FormatsToProcess = 'Monitor.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index 8bd69a54df0b..b19751411a36 100644 --- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 +++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.NetApp.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.NetApp.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.NetApp.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 90b9718fb91d..85c1b2c49907 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Network.dll' +RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Network.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\AutoMapper.dll', '.\Microsoft.Azure.Management.Network.d # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Network.format.ps1xml' +FormatsToProcess = 'Network.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Network.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Network.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 index fb9a04cd9863..12312e1b02f1 100644 --- a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 +++ b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.NotificationHubs.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.NotificationHubs.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.NotificationHubs.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 index 083b530ed4f2..073548e9ccfc 100644 --- a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 +++ b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 @@ -54,8 +54,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.OperationalInsights.dll', - '.\Microsoft.Azure.OperationalInsights.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.OperationalInsights.dll', + 'Microsoft.Azure.OperationalInsights.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -64,10 +64,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.OperationalInsights.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\OperationalInsights.format.ps1xml' +FormatsToProcess = 'OperationalInsights.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Peering/Peering/Az.Peering.psd1 b/src/Peering/Peering/Az.Peering.psd1 index 5fa44f4a818a..5a200447f360 100644 --- a/src/Peering/Peering/Az.Peering.psd1 +++ b/src/Peering/Peering/Az.Peering.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Peering.dll', '.\AutoMapper.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Peering.dll', 'AutoMapper.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Peering.dll', '.\AutoMapper.d FormatsToProcess = 'Microsoft.Azure.PowerShell.Cmdlets.Peering.Common.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Peering.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Peering.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 index 03cc65caa0ea..850f15c6fb60 100644 --- a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 +++ b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.PolicyInsights.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.PolicyInsights.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.PolicyInsights.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\PolicyInsights.format.ps1xml' +FormatsToProcess = 'PolicyInsights.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 index fded90c5b690..d1af05577eea 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 +++ b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.PowerBIEmbedded.dll', - '.\Microsoft.Azure.Management.PowerBIDedicated.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.PowerBIEmbedded.dll', + 'Microsoft.Azure.Management.PowerBIDedicated.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -69,8 +69,8 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.PowerBIEmbedded.dll', # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.PowerBIEmbedded.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.PowerBI.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.PowerBIEmbedded.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.PowerBI.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 index 68e381e0be8e..9aa767352643 100644 --- a/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 +++ b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.PrivateDns.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.PrivateDns.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.PrivateDns.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.PrivateDns.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.PrivateDns.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 index 2b99131028c5..1205a091cfd8 100644 --- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 +++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 @@ -57,17 +57,17 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Helpers.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Logger.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Providers.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.ServiceClientAdapter.dll', - '.\Microsoft.Azure.Management.RecoveryServices.Backup.dll', - '.\Microsoft.Azure.Management.RecoveryServices.dll', - '.\Microsoft.Azure.Management.RecoveryServices.SiteRecovery.dll', - '.\System.Configuration.ConfigurationManager.dll', - '.\TimeZoneConverter.dll' +RequiredAssemblies = 'AutoMapper.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Helpers.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Logger.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Providers.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.ServiceClientAdapter.dll', + 'Microsoft.Azure.Management.RecoveryServices.Backup.dll', + 'Microsoft.Azure.Management.RecoveryServices.dll', + 'Microsoft.Azure.Management.RecoveryServices.SiteRecovery.dll', + 'System.Configuration.ConfigurationManager.dll', + 'TimeZoneConverter.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -76,12 +76,12 @@ RequiredAssemblies = '.\AutoMapper.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\RecoveryServices.Backup.format.ps1xml' +FormatsToProcess = 'RecoveryServices.Backup.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/RedisCache/RedisCache/Az.RedisCache.psd1 b/src/RedisCache/RedisCache/Az.RedisCache.psd1 index 56f1dfb2197d..b6c2e6932642 100644 --- a/src/RedisCache/RedisCache/Az.RedisCache.psd1 +++ b/src/RedisCache/RedisCache/Az.RedisCache.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Insights.dll', - '.\Microsoft.Azure.Management.Redis.dll' +RequiredAssemblies = 'Microsoft.Azure.Insights.dll', + 'Microsoft.Azure.Management.Redis.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,10 +66,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Insights.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\RedisCache.format.ps1xml' +FormatsToProcess = 'RedisCache.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.RedisCache.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.RedisCache.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Relay/Relay/Az.Relay.psd1 b/src/Relay/Relay/Az.Relay.psd1 index 4eb48137b18c..a5717e1ed8b9 100644 --- a/src/Relay/Relay/Az.Relay.psd1 +++ b/src/Relay/Relay/Az.Relay.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Relay.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Relay.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Relay.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Relay.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Relay.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Reservations/Reservations/Az.Reservations.psd1 b/src/Reservations/Reservations/Az.Reservations.psd1 index 6aa4d33a3985..61a1c74c6a2d 100644 --- a/src/Reservations/Reservations/Az.Reservations.psd1 +++ b/src/Reservations/Reservations/Az.Reservations.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Reservations.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Reservations.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Reservations.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Reservations.format.ps1xml' +FormatsToProcess = 'Reservations.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Reservations.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Reservations.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 index ce4e1a3def8f..793be16b9e93 100644 --- a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 +++ b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ResourceGraph.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ResourceGraph.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ResourceGraph.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ResourceGraph.format.ps1xml' +FormatsToProcess = 'ResourceGraph.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ResourceGraph.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ResourceGraph.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Resources/Resources/Az.Resources.psd1 b/src/Resources/Resources/Az.Resources.psd1 index e9db80930e93..56249ce8cf9a 100644 --- a/src/Resources/Resources/Az.Resources.psd1 +++ b/src/Resources/Resources/Az.Resources.psd1 @@ -57,15 +57,15 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Authorization.dll', - '.\Microsoft.Azure.Management.ResourceManager.dll', - '.\Microsoft.Azure.Management.ManagementGroups.dll', - '.\Microsoft.Extensions.Caching.Abstractions.dll', - '.\Microsoft.Extensions.Caching.Memory.dll', - '.\Microsoft.Extensions.DependencyInjection.Abstractions.dll', - '.\Microsoft.Extensions.Options.dll', - '.\Microsoft.Extensions.Primitives.dll', - '.\Microsoft.Azure.Graph.RBAC.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Authorization.dll', + 'Microsoft.Azure.Management.ResourceManager.dll', + 'Microsoft.Azure.Management.ManagementGroups.dll', + 'Microsoft.Extensions.Caching.Abstractions.dll', + 'Microsoft.Extensions.Caching.Memory.dll', + 'Microsoft.Extensions.DependencyInjection.Abstractions.dll', + 'Microsoft.Extensions.Options.dll', + 'Microsoft.Extensions.Primitives.dll', + 'Microsoft.Azure.Graph.RBAC.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -74,13 +74,13 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Authorization.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Resources.format.ps1xml', '.\ResourceManager.format.ps1xml', - '.\ResourceManager.generated.format.ps1xml', '.\Tags.format.ps1xml' +FormatsToProcess = 'Resources.format.ps1xml', 'ResourceManager.format.ps1xml', + 'ResourceManager.generated.format.ps1xml', 'Tags.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Resources.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.Tags.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Resources.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.Tags.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Search/Search/Az.Search.psd1 b/src/Search/Search/Az.Search.psd1 index d0730971f767..982b27466a77 100644 --- a/src/Search/Search/Az.Search.psd1 +++ b/src/Search/Search/Az.Search.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Search.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Search.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Search.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Search.generated.format.ps1xml' +FormatsToProcess = 'Search.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Search.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Search.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Security/Security/Az.Security.psd1 b/src/Security/Security/Az.Security.psd1 index c57cbeadc122..3d2669a40cf1 100644 --- a/src/Security/Security/Az.Security.psd1 +++ b/src/Security/Security/Az.Security.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.SecurityCenter.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.SecurityCenter.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.SecurityCenter.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Security.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Security.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 index 0c5f8592576d..0aa01e0b31d6 100644 --- a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 +++ b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ServiceBus.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.ServiceBus.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.ServiceBus.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ServiceBus.format.ps1xml' +FormatsToProcess = 'ServiceBus.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 index ba3d9c46efc2..32df52a59ef8 100644 --- a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 +++ b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 @@ -56,9 +56,9 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.KeyVault.dll', - '.\Microsoft.Azure.KeyVault.WebKey.dll', - '.\Microsoft.Azure.Management.ServiceFabric.dll' +RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll', + 'Microsoft.Azure.KeyVault.WebKey.dll', + 'Microsoft.Azure.Management.ServiceFabric.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -67,10 +67,10 @@ RequiredAssemblies = '.\Microsoft.Azure.KeyVault.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\ServiceFabric.format.ps1xml' +FormatsToProcess = 'ServiceFabric.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/SignalR/SignalR/Az.SignalR.psd1 b/src/SignalR/SignalR/Az.SignalR.psd1 index 16918ddd4920..8c68d49eee25 100644 --- a/src/SignalR/SignalR/Az.SignalR.psd1 +++ b/src/SignalR/SignalR/Az.SignalR.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.SignalR.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.SignalR.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.SignalR.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\SignalR.format.ps1xml' +FormatsToProcess = 'SignalR.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index 5248afb3e907..cda2349601a2 100644 --- a/src/Storage/Storage.Management/Az.Storage.psd1 +++ b/src/Storage/Storage.Management/Az.Storage.psd1 @@ -56,17 +56,17 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Storage.dll', - '.\Microsoft.Azure.Storage.Common.dll', - '.\Microsoft.Azure.Storage.Blob.dll', - '.\Microsoft.Azure.Storage.File.dll', - '.\Microsoft.Azure.Storage.Queue.dll', - '.\Microsoft.Azure.Cosmos.Table.dll', - '.\Microsoft.Azure.DocumentDB.Core.dll', - '.\Microsoft.Azure.Storage.DataMovement.dll', - '.\Microsoft.Azure.DocumentDB.Core.dll', - '.\Microsoft.OData.Core.dll', '.\Microsoft.OData.Edm.dll', - '.\Microsoft.Spatial.dll', '.\Microsoft.Azure.KeyVault.Core.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Storage.dll', + 'Microsoft.Azure.Storage.Common.dll', + 'Microsoft.Azure.Storage.Blob.dll', + 'Microsoft.Azure.Storage.File.dll', + 'Microsoft.Azure.Storage.Queue.dll', + 'Microsoft.Azure.Cosmos.Table.dll', + 'Microsoft.Azure.DocumentDB.Core.dll', + 'Microsoft.Azure.Storage.DataMovement.dll', + 'Microsoft.Azure.DocumentDB.Core.dll', + 'Microsoft.OData.Core.dll', 'Microsoft.OData.Edm.dll', + 'Microsoft.Spatial.dll', 'Microsoft.Azure.KeyVault.Core.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -75,12 +75,12 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Storage.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Storage.Management.format.ps1xml', '.\Storage.format.ps1xml', - '.\Storage.generated.format.ps1xml' +FormatsToProcess = 'Storage.Management.format.ps1xml', 'Storage.format.ps1xml', + 'Storage.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll', - '.\Microsoft.Azure.PowerShell.Cmdlets.Storage.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll', + 'Microsoft.Azure.PowerShell.Cmdlets.Storage.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/StorageSync/StorageSync/Az.StorageSync.psd1 b/src/StorageSync/StorageSync/Az.StorageSync.psd1 index 54234f8d59a6..fa81f143b056 100644 --- a/src/StorageSync/StorageSync/Az.StorageSync.psd1 +++ b/src/StorageSync/StorageSync/Az.StorageSync.psd1 @@ -54,8 +54,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.StorageSync.dll', - '.\System.Management.dll', '.\System.CodeDom.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.StorageSync.dll', + 'System.Management.dll', 'System.CodeDom.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -64,10 +64,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.StorageSync.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\StorageSync.format.ps1xml' +FormatsToProcess = 'StorageSync.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.StorageSync.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.StorageSync.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 index 592140d9f4fa..97bfdff540a2 100644 --- a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 +++ b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.StreamAnalytics.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.StreamAnalytics.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -65,10 +65,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.StreamAnalytics.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\StreamAnalytics.format.ps1xml' +FormatsToProcess = 'StreamAnalytics.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Subscription/Subscription/Az.Subscription.psd1 b/src/Subscription/Subscription/Az.Subscription.psd1 index 9709ad73c842..3dbf92157786 100644 --- a/src/Subscription/Subscription/Az.Subscription.psd1 +++ b/src/Subscription/Subscription/Az.Subscription.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Subscription.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Subscription.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -63,10 +63,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Subscription.dll' # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Subscription.format.ps1xml' +FormatsToProcess = 'Subscription.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Subscription.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Subscription.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 index 85a04dd8e164..dec9a6b3aee7 100644 --- a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 +++ b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.TrafficManager.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.TrafficManager.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.TrafficManager.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.TrafficManager.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.TrafficManager.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1 index ca0b61662e6a..b74046d829d1 100644 --- a/src/Websites/Websites/Az.Websites.psd1 +++ b/src/Websites/Websites/Az.Websites.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.3'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.Websites.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.Websites.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -68,7 +68,7 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.Websites.dll' # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Websites.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Websites.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/tools/CheckAssemblies.ps1 b/tools/CheckAssemblies.ps1 index cc9895587b1d..096446b15166 100644 --- a/tools/CheckAssemblies.ps1 +++ b/tools/CheckAssemblies.ps1 @@ -61,7 +61,7 @@ foreach ($ModuleManifest in $ModuleManifestFiles) { } } - $LoadedAssemblies = $LoadedAssemblies | ForEach-Object { $_.Substring(2).Replace(".dll", "") } + $LoadedAssemblies = $LoadedAssemblies | ForEach-Object { $_.Replace(".dll", "") } $Found = @() foreach ($Assembly in $Assemblies) { From c34e38434c07e95440c1a57e001bcc154db263f5 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Wed, 9 Oct 2019 14:41:00 +0800 Subject: [PATCH 09/15] update ChangeLog.md for each module --- src/Accounts/Accounts/ChangeLog.md | 1 + src/Advisor/Advisor/ChangeLog.md | 1 + src/Aks/Aks/ChangeLog.md | 1 + src/AlertsManagement/AlertsManagement/ChangeLog.md | 1 + src/AnalysisServices/AnalysisServices/ChangeLog.md | 1 + src/ApiManagement/ApiManagement/ChangeLog.md | 1 + src/ApplicationInsights/ApplicationInsights/ChangeLog.md | 1 + src/Attestation/Attestation/ChangeLog.md | 1 + src/Automation/Automation/ChangeLog.md | 1 + src/Batch/Batch/ChangeLog.md | 1 + src/Billing/Billing/ChangeLog.md | 1 + src/Blueprint/Blueprint/ChangeLog.md | 1 + src/Cdn/Cdn/ChangeLog.md | 1 + src/CognitiveServices/CognitiveServices/ChangeLog.md | 1 + src/Compute/Compute/ChangeLog.md | 1 + src/ContainerInstance/ContainerInstance/ChangeLog.md | 1 + src/ContainerRegistry/ContainerRegistry/ChangeLog.md | 1 + src/DataBox/DataBox/ChangeLog.md | 1 + src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md | 1 + src/DataLakeStore/DataLakeStore/ChangeLog.md | 1 + src/DataMigration/DataMigration/ChangeLog.md | 1 + src/DataShare/DataShare/ChangeLog.md | 3 ++- src/DeploymentManager/DeploymentManager/ChangeLog.md | 1 + src/DevSpaces/DevSpaces/ChangeLog.md | 1 + src/DevTestLabs/DevTestLabs/ChangeLog.md | 3 ++- .../DeviceProvisioningServices/ChangeLog.md | 3 ++- src/Dns/Dns/ChangeLog.md | 1 + src/EventGrid/EventGrid/ChangeLog.md | 1 + src/EventHub/EventHub/ChangeLog.md | 1 + src/FrontDoor/FrontDoor/ChangeLog.md | 1 + src/GuestConfiguration/GuestConfiguration/ChangeLog.md | 1 + src/HDInsight/HDInsight/ChangeLog.md | 1 + src/HealthcareApis/HealthcareApis/ChangeLog.md | 1 + src/IotCentral/IotCentral/ChangeLog.md | 1 + src/IotHub/IotHub/ChangeLog.md | 1 + src/KeyVault/KeyVault/ChangeLog.md | 1 + src/LogicApp/LogicApp/ChangeLog.md | 1 + src/MachineLearning/MachineLearning/ChangeLog.md | 1 + src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md | 1 + src/ManagedServices/ManagedServices/ChangeLog.md | 1 + src/ManagementPartner/ManagementPartner/ChangeLog.md | 1 + src/Maps/Maps/ChangeLog.md | 1 + src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md | 1 + src/Media/Media/ChangeLog.md | 1 + src/MixedReality/MixedReality/ChangeLog.md | 1 + src/Monitor/Monitor/ChangeLog.md | 1 + src/NetAppFiles/NetAppFiles/ChangeLog.md | 1 + src/Network/Network/ChangeLog.md | 1 + src/NotificationHubs/NotificationHubs/ChangeLog.md | 1 + src/OperationalInsights/OperationalInsights/ChangeLog.md | 1 + src/Peering/Peering/ChangeLog.md | 1 + src/PolicyInsights/PolicyInsights/ChangeLog.md | 1 + src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md | 1 + src/PrivateDns/PrivateDns/ChangeLog.md | 1 + src/RecoveryServices/RecoveryServices/ChangeLog.md | 1 + src/RedisCache/RedisCache/ChangeLog.md | 1 + src/Relay/Relay/ChangeLog.md | 1 + src/Reservations/Reservations/ChangeLog.md | 3 ++- src/ResourceGraph/ResourceGraph/ChangeLog.md | 1 + src/Resources/Resources/ChangeLog.md | 1 + src/Search/Search/ChangeLog.md | 1 + src/Security/Security/ChangeLog.md | 1 + src/ServiceBus/ServiceBus/ChangeLog.md | 1 + src/ServiceFabric/ServiceFabric/ChangeLog.md | 1 + src/SignalR/SignalR/ChangeLog.md | 1 + src/Sql/Sql/ChangeLog.md | 1 + src/Storage/Storage.Management/ChangeLog.md | 1 + src/StorageSync/StorageSync/ChangeLog.md | 1 + src/StreamAnalytics/StreamAnalytics/ChangeLog.md | 3 ++- src/Subscription/Subscription/ChangeLog.md | 3 ++- src/TrafficManager/TrafficManager/ChangeLog.md | 1 + src/Websites/Websites/ChangeLog.md | 1 + 72 files changed, 78 insertions(+), 6 deletions(-) diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index d6abffbe9b35..7d6baa2ef128 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.6.2 * Fixed miscellaneous typos across module diff --git a/src/Advisor/Advisor/ChangeLog.md b/src/Advisor/Advisor/ChangeLog.md index ca1a94af506d..0ebadb58e503 100644 --- a/src/Advisor/Advisor/ChangeLog.md +++ b/src/Advisor/Advisor/ChangeLog.md @@ -19,6 +19,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.1 * Fixed miscellaneous typos across module diff --git a/src/Aks/Aks/ChangeLog.md b/src/Aks/Aks/ChangeLog.md index 0b084fb8e53f..fde954e2afa8 100644 --- a/src/Aks/Aks/ChangeLog.md +++ b/src/Aks/Aks/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.2 * Fixed miscellaneous typos across module diff --git a/src/AlertsManagement/AlertsManagement/ChangeLog.md b/src/AlertsManagement/AlertsManagement/ChangeLog.md index 41ab50d07744..eaf0d497e8d6 100644 --- a/src/AlertsManagement/AlertsManagement/ChangeLog.md +++ b/src/AlertsManagement/AlertsManagement/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.1.0 * Preview of `Az.AlertsManagement` module diff --git a/src/AnalysisServices/AnalysisServices/ChangeLog.md b/src/AnalysisServices/AnalysisServices/ChangeLog.md index dea39582de9e..8ea7905c5d8a 100644 --- a/src/AnalysisServices/AnalysisServices/ChangeLog.md +++ b/src/AnalysisServices/AnalysisServices/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.1.1 * Fixed miscellaneous typos across module diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md index dbf5a08cd70d..2cf74862bad1 100644 --- a/src/ApiManagement/ApiManagement/ChangeLog.md +++ b/src/ApiManagement/ApiManagement/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.3.1 * Update `-Format` parameter description in `Set-AzApiManagementPolicy` reference documentation diff --git a/src/ApplicationInsights/ApplicationInsights/ChangeLog.md b/src/ApplicationInsights/ApplicationInsights/ChangeLog.md index 83ddf1ed6c48..066dc8280527 100644 --- a/src/ApplicationInsights/ApplicationInsights/ChangeLog.md +++ b/src/ApplicationInsights/ApplicationInsights/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.2 * Fixed miscellaneous typos across module diff --git a/src/Attestation/Attestation/ChangeLog.md b/src/Attestation/Attestation/ChangeLog.md index bd7f1b262b39..30591c3177a1 100644 --- a/src/Attestation/Attestation/ChangeLog.md +++ b/src/Attestation/Attestation/ChangeLog.md @@ -20,6 +20,7 @@ ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.1.2 * Fixed miscellaneous typos across module diff --git a/src/Automation/Automation/ChangeLog.md b/src/Automation/Automation/ChangeLog.md index 1ccc181b63e6..e7ff1a913513 100644 --- a/src/Automation/Automation/ChangeLog.md +++ b/src/Automation/Automation/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.3.3 * Fixed example typo in reference documentation for `Register-AzAutomationDscNode` diff --git a/src/Batch/Batch/ChangeLog.md b/src/Batch/Batch/ChangeLog.md index d167b27a6a03..0a1fb577ffcf 100644 --- a/src/Batch/Batch/ChangeLog.md +++ b/src/Batch/Batch/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* update references in .psd1 to use relative path * **Get-AzBatchNodeAgentSku** is deprecated and will be replaced by **Get-AzBatchSupportImage** in version 2.0.0. ## Version 1.1.1 diff --git a/src/Billing/Billing/ChangeLog.md b/src/Billing/Billing/ChangeLog.md index 6d252d4b3516..19af1ed8d545 100644 --- a/src/Billing/Billing/ChangeLog.md +++ b/src/Billing/Billing/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.1 * Fixed miscellaneous typos across module diff --git a/src/Blueprint/Blueprint/ChangeLog.md b/src/Blueprint/Blueprint/ChangeLog.md index dde47a10a205..1f47dcc2265e 100644 --- a/src/Blueprint/Blueprint/ChangeLog.md +++ b/src/Blueprint/Blueprint/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.2.5 * Add functionality to make sure Blueprint RP is registered before any service calls diff --git a/src/Cdn/Cdn/ChangeLog.md b/src/Cdn/Cdn/ChangeLog.md index d9ade55f21be..649c6810a961 100644 --- a/src/Cdn/Cdn/ChangeLog.md +++ b/src/Cdn/Cdn/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.3.1 * Fixed miscellaneous typos across module diff --git a/src/CognitiveServices/CognitiveServices/ChangeLog.md b/src/CognitiveServices/CognitiveServices/ChangeLog.md index da81dadbda52..e913705dee3f 100644 --- a/src/CognitiveServices/CognitiveServices/ChangeLog.md +++ b/src/CognitiveServices/CognitiveServices/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.2.1 * Fixed miscellaneous typos across module diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 2e8f740ef86d..89d7900e2611 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -19,6 +19,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 2.6.0 * Add UploadSizeInBytes parameter tp New-AzDiskConfig diff --git a/src/ContainerInstance/ContainerInstance/ChangeLog.md b/src/ContainerInstance/ContainerInstance/ChangeLog.md index 7a325dd29bb3..6b8d8c5170e1 100644 --- a/src/ContainerInstance/ContainerInstance/ChangeLog.md +++ b/src/ContainerInstance/ContainerInstance/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.1 * Fixed issue in the -Command parameter of New-AzContainerGroup which added a trailing empty argument diff --git a/src/ContainerRegistry/ContainerRegistry/ChangeLog.md b/src/ContainerRegistry/ContainerRegistry/ChangeLog.md index a89f5a81458e..1945aafb4cf0 100644 --- a/src/ContainerRegistry/ContainerRegistry/ChangeLog.md +++ b/src/ContainerRegistry/ContainerRegistry/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.1.0 * Fix typo in Remove-AzContainerRegistryReplication for Replication parameter diff --git a/src/DataBox/DataBox/ChangeLog.md b/src/DataBox/DataBox/ChangeLog.md index af3b9c778118..1ea380450acc 100644 --- a/src/DataBox/DataBox/ChangeLog.md +++ b/src/DataBox/DataBox/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.1.0 * General Availability of `Az.Databox` Module diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md b/src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md index 4d0198bed30f..ca7cf241bc7a 100644 --- a/src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md +++ b/src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.1 * Fixed miscellaneous typos across module diff --git a/src/DataLakeStore/DataLakeStore/ChangeLog.md b/src/DataLakeStore/DataLakeStore/ChangeLog.md index a61af03ee4fd..e3b5b3aca88d 100644 --- a/src/DataLakeStore/DataLakeStore/ChangeLog.md +++ b/src/DataLakeStore/DataLakeStore/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.2.2 * Fix hanging of Get-DataLakeStoreDeletedItem for any errors or remote exceptions. diff --git a/src/DataMigration/DataMigration/ChangeLog.md b/src/DataMigration/DataMigration/ChangeLog.md index b15f5d9ad2e5..580216a3c075 100644 --- a/src/DataMigration/DataMigration/ChangeLog.md +++ b/src/DataMigration/DataMigration/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.7.3 * Fixed miscellaneous typos across module diff --git a/src/DataShare/DataShare/ChangeLog.md b/src/DataShare/DataShare/ChangeLog.md index 83b99ef3b093..d14e1a722351 100644 --- a/src/DataShare/DataShare/ChangeLog.md +++ b/src/DataShare/DataShare/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.1.0 -* Added new Powershell cmdlets for AzDataShare \ No newline at end of file +* Added new Powershell cmdlets for AzDataShare diff --git a/src/DeploymentManager/DeploymentManager/ChangeLog.md b/src/DeploymentManager/DeploymentManager/ChangeLog.md index b58ec40c5702..76c970b11096 100644 --- a/src/DeploymentManager/DeploymentManager/ChangeLog.md +++ b/src/DeploymentManager/DeploymentManager/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.1 * Fixed miscellaneous typos across module diff --git a/src/DevSpaces/DevSpaces/ChangeLog.md b/src/DevSpaces/DevSpaces/ChangeLog.md index 83833fd0e0ac..99b198256fdc 100644 --- a/src/DevSpaces/DevSpaces/ChangeLog.md +++ b/src/DevSpaces/DevSpaces/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.7.2 * Fixed miscellaneous typos across module diff --git a/src/DevTestLabs/DevTestLabs/ChangeLog.md b/src/DevTestLabs/DevTestLabs/ChangeLog.md index ece4ee8507e0..bb06cb9249e3 100644 --- a/src/DevTestLabs/DevTestLabs/ChangeLog.md +++ b/src/DevTestLabs/DevTestLabs/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.0 -* General availability of `Az.DevTestLabs` module \ No newline at end of file +* General availability of `Az.DevTestLabs` module diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md b/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md index bc6d9ca28ac7..ddeb51db9274 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md @@ -17,4 +17,5 @@ * Overview of change #1 - Additional information about change #1 --> -## Upcoming Release \ No newline at end of file +## Upcoming Release +* update references in .psd1 to use relative path diff --git a/src/Dns/Dns/ChangeLog.md b/src/Dns/Dns/ChangeLog.md index f93cc40640fd..de05c4e4fe5e 100644 --- a/src/Dns/Dns/ChangeLog.md +++ b/src/Dns/Dns/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.1.1 * Fixed a typo in `Set-AzDnsZone` help examples. diff --git a/src/EventGrid/EventGrid/ChangeLog.md b/src/EventGrid/EventGrid/ChangeLog.md index 326c2278c851..c603f12fb55f 100644 --- a/src/EventGrid/EventGrid/ChangeLog.md +++ b/src/EventGrid/EventGrid/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.2.2 * Fixed miscellaneous typos across module diff --git a/src/EventHub/EventHub/ChangeLog.md b/src/EventHub/EventHub/ChangeLog.md index 930882094c81..e989b7ab8dd0 100644 --- a/src/EventHub/EventHub/ChangeLog.md +++ b/src/EventHub/EventHub/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.4.0 * Fixed miscellaneous typos across module diff --git a/src/FrontDoor/FrontDoor/ChangeLog.md b/src/FrontDoor/FrontDoor/ChangeLog.md index 80c265883f72..b3445ccdc661 100644 --- a/src/FrontDoor/FrontDoor/ChangeLog.md +++ b/src/FrontDoor/FrontDoor/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.1.1 * Fixed miscellaneous typos across module diff --git a/src/GuestConfiguration/GuestConfiguration/ChangeLog.md b/src/GuestConfiguration/GuestConfiguration/ChangeLog.md index 24c08cae66a2..3f3ac6ea3475 100644 --- a/src/GuestConfiguration/GuestConfiguration/ChangeLog.md +++ b/src/GuestConfiguration/GuestConfiguration/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.10.6 * Fixed the inconsistency of compliance status reporting when Policy is non-compliant due to parameter updates scenario. diff --git a/src/HDInsight/HDInsight/ChangeLog.md b/src/HDInsight/HDInsight/ChangeLog.md index 1671d028bf19..fdd79877595f 100644 --- a/src/HDInsight/HDInsight/ChangeLog.md +++ b/src/HDInsight/HDInsight/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 2.0.2 * Call out breaking changes diff --git a/src/HealthcareApis/HealthcareApis/ChangeLog.md b/src/HealthcareApis/HealthcareApis/ChangeLog.md index e76f98935545..4f019c291b54 100644 --- a/src/HealthcareApis/HealthcareApis/ChangeLog.md +++ b/src/HealthcareApis/HealthcareApis/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path * Exception Handling ## Version 0.1.2 diff --git a/src/IotCentral/IotCentral/ChangeLog.md b/src/IotCentral/IotCentral/ChangeLog.md index 6e6a6e143cbc..cf2098fdaceb 100644 --- a/src/IotCentral/IotCentral/ChangeLog.md +++ b/src/IotCentral/IotCentral/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.7.1 * Added subdomain parameter to Set-AzureRmIoTCentralApp for updating subdomain diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md index 2348913a4ba2..c3f1363f7df0 100644 --- a/src/IotHub/IotHub/ChangeLog.md +++ b/src/IotHub/IotHub/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.3.0 * Add support to invoke failover for an IotHub to the geo-paired disaster recovery region. diff --git a/src/KeyVault/KeyVault/ChangeLog.md b/src/KeyVault/KeyVault/ChangeLog.md index 48dca20a68ad..650da99b0b00 100644 --- a/src/KeyVault/KeyVault/ChangeLog.md +++ b/src/KeyVault/KeyVault/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.3.1 * Fixed miscellaneous typos across module diff --git a/src/LogicApp/LogicApp/ChangeLog.md b/src/LogicApp/LogicApp/ChangeLog.md index 7d63058bc878..c266fc1c024b 100644 --- a/src/LogicApp/LogicApp/ChangeLog.md +++ b/src/LogicApp/LogicApp/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.3.1 * Fixed miscellaneous typos across module diff --git a/src/MachineLearning/MachineLearning/ChangeLog.md b/src/MachineLearning/MachineLearning/ChangeLog.md index 83036216ce61..8ca2bf3856c0 100644 --- a/src/MachineLearning/MachineLearning/ChangeLog.md +++ b/src/MachineLearning/MachineLearning/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.1.1 * Fixed miscellaneous typos across module diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md b/src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md index 954f6abd741e..f8766c51bd11 100644 --- a/src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md +++ b/src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.7.2 * Fixed miscellaneous typos across module diff --git a/src/ManagedServices/ManagedServices/ChangeLog.md b/src/ManagedServices/ManagedServices/ChangeLog.md index eff81cc5ce66..dd74243735f9 100644 --- a/src/ManagedServices/ManagedServices/ChangeLog.md +++ b/src/ManagedServices/ManagedServices/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.1 * Fixed miscellaneous typos across module diff --git a/src/ManagementPartner/ManagementPartner/ChangeLog.md b/src/ManagementPartner/ManagementPartner/ChangeLog.md index 56886a86eaa0..7f287475ac98 100644 --- a/src/ManagementPartner/ManagementPartner/ChangeLog.md +++ b/src/ManagementPartner/ManagementPartner/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.7.1 * Update incorrect online help URLs diff --git a/src/Maps/Maps/ChangeLog.md b/src/Maps/Maps/ChangeLog.md index 54e4255738b2..106e2d95d72e 100644 --- a/src/Maps/Maps/ChangeLog.md +++ b/src/Maps/Maps/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.7.1 * Added support for `S1` SKU diff --git a/src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md b/src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md index 0cec65912b84..dce261e9eee3 100644 --- a/src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md +++ b/src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.1 * Fixed documentation typo where "Azure" was all lowercase letters diff --git a/src/Media/Media/ChangeLog.md b/src/Media/Media/ChangeLog.md index 65d2ac4e52fa..ac4276f9d9af 100644 --- a/src/Media/Media/ChangeLog.md +++ b/src/Media/Media/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.1.0 * Updated cmdlets with plural nouns to singular, and deprecated plural names. diff --git a/src/MixedReality/MixedReality/ChangeLog.md b/src/MixedReality/MixedReality/ChangeLog.md index d240ce909f02..f9fe2e1b0694 100644 --- a/src/MixedReality/MixedReality/ChangeLog.md +++ b/src/MixedReality/MixedReality/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.1.2 * Fixed miscellaneous typos across module diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index f542fddcad8e..7a47abac7733 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 ## Upcoming Release +* update references in .psd1 to use relative path * New action group receivers added for action group -ItsmReceiver -VoiceReceiver diff --git a/src/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md index 9f0215c8eade..3a6c0b4b3f1c 100644 --- a/src/NetAppFiles/NetAppFiles/ChangeLog.md +++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.1.2 diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 1fb47345798d..7964684bf21b 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,6 +19,7 @@ ---> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.14.0 * Fix incorrect example in `New-AzApplicationGateway` reference documentation diff --git a/src/NotificationHubs/NotificationHubs/ChangeLog.md b/src/NotificationHubs/NotificationHubs/ChangeLog.md index 17278221b764..598cf90c878c 100644 --- a/src/NotificationHubs/NotificationHubs/ChangeLog.md +++ b/src/NotificationHubs/NotificationHubs/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.1.0 * Updated cmdlets with plural nouns to singular, and deprecated plural names. diff --git a/src/OperationalInsights/OperationalInsights/ChangeLog.md b/src/OperationalInsights/OperationalInsights/ChangeLog.md index 4ab044ae7890..78c194519c84 100644 --- a/src/OperationalInsights/OperationalInsights/ChangeLog.md +++ b/src/OperationalInsights/OperationalInsights/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.3.3 * Fixed miscellaneous typos across module diff --git a/src/Peering/Peering/ChangeLog.md b/src/Peering/Peering/ChangeLog.md index 55692e652f9c..08cb27a63ed6 100644 --- a/src/Peering/Peering/ChangeLog.md +++ b/src/Peering/Peering/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.1.4 * Added Peering Service Operations diff --git a/src/PolicyInsights/PolicyInsights/ChangeLog.md b/src/PolicyInsights/PolicyInsights/ChangeLog.md index 74ecaa473cad..8a626d44751b 100644 --- a/src/PolicyInsights/PolicyInsights/ChangeLog.md +++ b/src/PolicyInsights/PolicyInsights/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.1.3 * Fixed miscellaneous typos across module diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md b/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md index d0bc711b823b..1ac9e0e7fee6 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md +++ b/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.1.0 * Updated cmdlets with plural nouns to singular, and deprecated plural names. diff --git a/src/PrivateDns/PrivateDns/ChangeLog.md b/src/PrivateDns/PrivateDns/ChangeLog.md index 60807049fae7..0418bcbee527 100644 --- a/src/PrivateDns/PrivateDns/ChangeLog.md +++ b/src/PrivateDns/PrivateDns/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.1.3 * Added support for linking cross-tenant Vnets to Private DNS Zones diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index 64bb5c8017be..b2cc31e8f237 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.4.5 * Update AzureVMpolicy Object with ProtectedItemsCount Attribute diff --git a/src/RedisCache/RedisCache/ChangeLog.md b/src/RedisCache/RedisCache/ChangeLog.md index a4aa454df8b7..a67388c7a29d 100644 --- a/src/RedisCache/RedisCache/ChangeLog.md +++ b/src/RedisCache/RedisCache/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path * Updated `Set-AzRedisCache` reference documentation to include missing values for `-Size` parameter ## Version 1.1.0 diff --git a/src/Relay/Relay/ChangeLog.md b/src/Relay/Relay/ChangeLog.md index a011aad59d8d..493f8e8a5c2e 100644 --- a/src/Relay/Relay/ChangeLog.md +++ b/src/Relay/Relay/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.2 * Fixed miscellaneous typos across module diff --git a/src/Reservations/Reservations/ChangeLog.md b/src/Reservations/Reservations/ChangeLog.md index 0288d6215156..bc52508a998b 100644 --- a/src/Reservations/Reservations/ChangeLog.md +++ b/src/Reservations/Reservations/ChangeLog.md @@ -18,4 +18,5 @@ * Overview of change #1 - Additional information about change #1 --> -## Upcoming Release \ No newline at end of file +## Upcoming Release +* update references in .psd1 to use relative path diff --git a/src/ResourceGraph/ResourceGraph/ChangeLog.md b/src/ResourceGraph/ResourceGraph/ChangeLog.md index e35c435bc135..79287d02ffe0 100644 --- a/src/ResourceGraph/ResourceGraph/ChangeLog.md +++ b/src/ResourceGraph/ResourceGraph/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.7.6 * Ignoring subscription from azure context diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index f8ef9d5ffd21..77870ed3ce1d 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.7.0 * Fix bug where New-AzRoleAssignment could not be called without parameter Scope. diff --git a/src/Search/Search/ChangeLog.md b/src/Search/Search/ChangeLog.md index 48ba5d0335a3..318b2564e705 100644 --- a/src/Search/Search/ChangeLog.md +++ b/src/Search/Search/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.7.3 * Fixed miscellaneous typos across module diff --git a/src/Security/Security/ChangeLog.md b/src/Security/Security/ChangeLog.md index bdaef716b1ee..a1909379896d 100644 --- a/src/Security/Security/ChangeLog.md +++ b/src/Security/Security/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 0.7.6 * Fixed miscellaneous typos across module diff --git a/src/ServiceBus/ServiceBus/ChangeLog.md b/src/ServiceBus/ServiceBus/ChangeLog.md index 8267a2ba81e8..25fb4d242249 100644 --- a/src/ServiceBus/ServiceBus/ChangeLog.md +++ b/src/ServiceBus/ServiceBus/ChangeLog.md @@ -19,6 +19,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.4.0 * Fixed miscellaneous typos across module diff --git a/src/ServiceFabric/ServiceFabric/ChangeLog.md b/src/ServiceFabric/ServiceFabric/ChangeLog.md index 805e0bf56a7c..a7daa1fd6750 100644 --- a/src/ServiceFabric/ServiceFabric/ChangeLog.md +++ b/src/ServiceFabric/ServiceFabric/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.2.0 * Fixed typo in example for `Update-AzServiceFabricReliability` reference documentation diff --git a/src/SignalR/SignalR/ChangeLog.md b/src/SignalR/SignalR/ChangeLog.md index 41a471f84e5a..156d25bd3305 100644 --- a/src/SignalR/SignalR/ChangeLog.md +++ b/src/SignalR/SignalR/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.1.0 * Add Update, Restart, CheckNameAvailability, GetUsage Cmdlets diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index fcdf7c4b548b..4023cd05f84d 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.14.2 * Update example in reference documentation for `Get-AzSqlElasticPool` diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index 8f78b97ba8a2..6cc8e2e46d87 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.7.0 * Updated example in reference documentation for `Get-AzStorageAccountKey` diff --git a/src/StorageSync/StorageSync/ChangeLog.md b/src/StorageSync/StorageSync/ChangeLog.md index 93a7ee2d20c2..9a8a228b4622 100644 --- a/src/StorageSync/StorageSync/ChangeLog.md +++ b/src/StorageSync/StorageSync/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.2.0 * Adding Invoke-AzStorageSyncChangeDetection cmdlet. diff --git a/src/StreamAnalytics/StreamAnalytics/ChangeLog.md b/src/StreamAnalytics/StreamAnalytics/ChangeLog.md index 63193f4d7cae..1b422dc76b6c 100644 --- a/src/StreamAnalytics/StreamAnalytics/ChangeLog.md +++ b/src/StreamAnalytics/StreamAnalytics/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.0 -* General availability of `Az.StreamAnalytics` module \ No newline at end of file +* General availability of `Az.StreamAnalytics` module diff --git a/src/Subscription/Subscription/ChangeLog.md b/src/Subscription/Subscription/ChangeLog.md index bc6d9ca28ac7..ddeb51db9274 100644 --- a/src/Subscription/Subscription/ChangeLog.md +++ b/src/Subscription/Subscription/ChangeLog.md @@ -17,4 +17,5 @@ * Overview of change #1 - Additional information about change #1 --> -## Upcoming Release \ No newline at end of file +## Upcoming Release +* update references in .psd1 to use relative path diff --git a/src/TrafficManager/TrafficManager/ChangeLog.md b/src/TrafficManager/TrafficManager/ChangeLog.md index b03e641a110d..0942f9502223 100644 --- a/src/TrafficManager/TrafficManager/ChangeLog.md +++ b/src/TrafficManager/TrafficManager/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.0.2 * Fixed miscellaneous typos across module diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md index ea73815d2869..9b06ab399e4f 100644 --- a/src/Websites/Websites/ChangeLog.md +++ b/src/Websites/Websites/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* update references in .psd1 to use relative path ## Version 1.4.2 * Fixing issue where webapp Tags were getting deleted when migrating App to new ASPwhere webapp Tags were getting deleted when migrating App to new ASP From 2e7481c49b17de8abb666e19ebe4bb572fe8d939 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Wed, 9 Oct 2019 15:10:38 +0800 Subject: [PATCH 10/15] use upper case for the first letter in each ChangeLog.md update --- src/Accounts/Accounts/ChangeLog.md | 2 +- src/Advisor/Advisor/ChangeLog.md | 2 +- src/Aks/Aks/ChangeLog.md | 2 +- src/AlertsManagement/AlertsManagement/ChangeLog.md | 2 +- src/AnalysisServices/AnalysisServices/ChangeLog.md | 2 +- src/ApiManagement/ApiManagement/ChangeLog.md | 2 +- src/ApplicationInsights/ApplicationInsights/ChangeLog.md | 2 +- src/Attestation/Attestation/ChangeLog.md | 2 +- src/Automation/Automation/ChangeLog.md | 2 +- src/Batch/Batch/ChangeLog.md | 2 +- src/Billing/Billing/ChangeLog.md | 2 +- src/Blueprint/Blueprint/ChangeLog.md | 2 +- src/Cdn/Cdn/ChangeLog.md | 2 +- src/CognitiveServices/CognitiveServices/ChangeLog.md | 2 +- src/Compute/Compute/ChangeLog.md | 2 +- src/ContainerInstance/ContainerInstance/ChangeLog.md | 2 +- src/ContainerRegistry/ContainerRegistry/ChangeLog.md | 2 +- src/DataBox/DataBox/ChangeLog.md | 2 +- src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md | 2 +- src/DataLakeStore/DataLakeStore/ChangeLog.md | 2 +- src/DataMigration/DataMigration/ChangeLog.md | 2 +- src/DataShare/DataShare/ChangeLog.md | 2 +- src/DeploymentManager/DeploymentManager/ChangeLog.md | 2 +- src/DevSpaces/DevSpaces/ChangeLog.md | 2 +- src/DevTestLabs/DevTestLabs/ChangeLog.md | 2 +- .../DeviceProvisioningServices/ChangeLog.md | 2 +- src/Dns/Dns/ChangeLog.md | 2 +- src/EventGrid/EventGrid/ChangeLog.md | 2 +- src/EventHub/EventHub/ChangeLog.md | 2 +- src/FrontDoor/FrontDoor/ChangeLog.md | 2 +- src/GuestConfiguration/GuestConfiguration/ChangeLog.md | 2 +- src/HDInsight/HDInsight/ChangeLog.md | 2 +- src/HealthcareApis/HealthcareApis/ChangeLog.md | 2 +- src/IotCentral/IotCentral/ChangeLog.md | 2 +- src/IotHub/IotHub/ChangeLog.md | 2 +- src/KeyVault/KeyVault/ChangeLog.md | 2 +- src/LogicApp/LogicApp/ChangeLog.md | 2 +- src/MachineLearning/MachineLearning/ChangeLog.md | 2 +- src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md | 2 +- src/ManagedServices/ManagedServices/ChangeLog.md | 2 +- src/ManagementPartner/ManagementPartner/ChangeLog.md | 2 +- src/Maps/Maps/ChangeLog.md | 2 +- src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md | 2 +- src/Media/Media/ChangeLog.md | 2 +- src/MixedReality/MixedReality/ChangeLog.md | 2 +- src/Monitor/Monitor/ChangeLog.md | 2 +- src/NetAppFiles/NetAppFiles/ChangeLog.md | 2 +- src/Network/Network/ChangeLog.md | 2 +- src/NotificationHubs/NotificationHubs/ChangeLog.md | 2 +- src/OperationalInsights/OperationalInsights/ChangeLog.md | 2 +- src/Peering/Peering/ChangeLog.md | 2 +- src/PolicyInsights/PolicyInsights/ChangeLog.md | 2 +- src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md | 2 +- src/PrivateDns/PrivateDns/ChangeLog.md | 2 +- src/RecoveryServices/RecoveryServices/ChangeLog.md | 2 +- src/RedisCache/RedisCache/ChangeLog.md | 2 +- src/Relay/Relay/ChangeLog.md | 2 +- src/Reservations/Reservations/ChangeLog.md | 2 +- src/ResourceGraph/ResourceGraph/ChangeLog.md | 2 +- src/Resources/Resources/ChangeLog.md | 2 +- src/Search/Search/ChangeLog.md | 2 +- src/Security/Security/ChangeLog.md | 2 +- src/ServiceBus/ServiceBus/ChangeLog.md | 2 +- src/ServiceFabric/ServiceFabric/ChangeLog.md | 2 +- src/SignalR/SignalR/ChangeLog.md | 2 +- src/Sql/Sql/ChangeLog.md | 2 +- src/Storage/Storage.Management/ChangeLog.md | 2 +- src/StorageSync/StorageSync/ChangeLog.md | 2 +- src/StreamAnalytics/StreamAnalytics/ChangeLog.md | 2 +- src/Subscription/Subscription/ChangeLog.md | 2 +- src/TrafficManager/TrafficManager/ChangeLog.md | 2 +- src/Websites/Websites/ChangeLog.md | 2 +- 72 files changed, 72 insertions(+), 72 deletions(-) diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 3a3ebafa8112..39b1f490d601 100644 --- a/src/Accounts/Accounts/ChangeLog.md +++ b/src/Accounts/Accounts/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.6.3 * Update telemetry and url rewriting for generated modules, fix windows unit tests. diff --git a/src/Advisor/Advisor/ChangeLog.md b/src/Advisor/Advisor/ChangeLog.md index 0ebadb58e503..389377486f9d 100644 --- a/src/Advisor/Advisor/ChangeLog.md +++ b/src/Advisor/Advisor/ChangeLog.md @@ -19,7 +19,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.1 * Fixed miscellaneous typos across module diff --git a/src/Aks/Aks/ChangeLog.md b/src/Aks/Aks/ChangeLog.md index fde954e2afa8..5554328f11e6 100644 --- a/src/Aks/Aks/ChangeLog.md +++ b/src/Aks/Aks/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.2 * Fixed miscellaneous typos across module diff --git a/src/AlertsManagement/AlertsManagement/ChangeLog.md b/src/AlertsManagement/AlertsManagement/ChangeLog.md index eaf0d497e8d6..42118428b93a 100644 --- a/src/AlertsManagement/AlertsManagement/ChangeLog.md +++ b/src/AlertsManagement/AlertsManagement/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.1.0 * Preview of `Az.AlertsManagement` module diff --git a/src/AnalysisServices/AnalysisServices/ChangeLog.md b/src/AnalysisServices/AnalysisServices/ChangeLog.md index 8ea7905c5d8a..ce3f084d5bc0 100644 --- a/src/AnalysisServices/AnalysisServices/ChangeLog.md +++ b/src/AnalysisServices/AnalysisServices/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.1.1 * Fixed miscellaneous typos across module diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md index 4b2f45041dca..eb6cf0554abd 100644 --- a/src/ApiManagement/ApiManagement/ChangeLog.md +++ b/src/ApiManagement/ApiManagement/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path * **Set-AzApiManagementApi** - Added support for Updating Api into ApiVersionSet - Fix for issue https://github.com/Azure/azure-powershell/issues/10068 diff --git a/src/ApplicationInsights/ApplicationInsights/ChangeLog.md b/src/ApplicationInsights/ApplicationInsights/ChangeLog.md index 066dc8280527..e8be6844b876 100644 --- a/src/ApplicationInsights/ApplicationInsights/ChangeLog.md +++ b/src/ApplicationInsights/ApplicationInsights/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.2 * Fixed miscellaneous typos across module diff --git a/src/Attestation/Attestation/ChangeLog.md b/src/Attestation/Attestation/ChangeLog.md index 30591c3177a1..cedebcd2df77 100644 --- a/src/Attestation/Attestation/ChangeLog.md +++ b/src/Attestation/Attestation/ChangeLog.md @@ -20,7 +20,7 @@ ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.1.2 * Fixed miscellaneous typos across module diff --git a/src/Automation/Automation/ChangeLog.md b/src/Automation/Automation/ChangeLog.md index c6f266a2f476..9de2e76598ae 100644 --- a/src/Automation/Automation/ChangeLog.md +++ b/src/Automation/Automation/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.3.3 * Fixed example typo in reference documentation for `Register-AzAutomationDscNode` diff --git a/src/Batch/Batch/ChangeLog.md b/src/Batch/Batch/ChangeLog.md index 0a1fb577ffcf..ddf8dcf7f2d3 100644 --- a/src/Batch/Batch/ChangeLog.md +++ b/src/Batch/Batch/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path * **Get-AzBatchNodeAgentSku** is deprecated and will be replaced by **Get-AzBatchSupportImage** in version 2.0.0. ## Version 1.1.1 diff --git a/src/Billing/Billing/ChangeLog.md b/src/Billing/Billing/ChangeLog.md index 19af1ed8d545..d5a6fcfec0af 100644 --- a/src/Billing/Billing/ChangeLog.md +++ b/src/Billing/Billing/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.1 * Fixed miscellaneous typos across module diff --git a/src/Blueprint/Blueprint/ChangeLog.md b/src/Blueprint/Blueprint/ChangeLog.md index 1f47dcc2265e..affb36393249 100644 --- a/src/Blueprint/Blueprint/ChangeLog.md +++ b/src/Blueprint/Blueprint/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.2.5 * Add functionality to make sure Blueprint RP is registered before any service calls diff --git a/src/Cdn/Cdn/ChangeLog.md b/src/Cdn/Cdn/ChangeLog.md index 649c6810a961..61bdc42277d4 100644 --- a/src/Cdn/Cdn/ChangeLog.md +++ b/src/Cdn/Cdn/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.3.1 * Fixed miscellaneous typos across module diff --git a/src/CognitiveServices/CognitiveServices/ChangeLog.md b/src/CognitiveServices/CognitiveServices/ChangeLog.md index e913705dee3f..d1bb9927c7d3 100644 --- a/src/CognitiveServices/CognitiveServices/ChangeLog.md +++ b/src/CognitiveServices/CognitiveServices/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.2.1 * Fixed miscellaneous typos across module diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 279ca1d2510e..90f9e604ada3 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -19,7 +19,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 2.6.0 * Add UploadSizeInBytes parameter tp New-AzDiskConfig diff --git a/src/ContainerInstance/ContainerInstance/ChangeLog.md b/src/ContainerInstance/ContainerInstance/ChangeLog.md index 6b8d8c5170e1..b2f64b380784 100644 --- a/src/ContainerInstance/ContainerInstance/ChangeLog.md +++ b/src/ContainerInstance/ContainerInstance/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.1 * Fixed issue in the -Command parameter of New-AzContainerGroup which added a trailing empty argument diff --git a/src/ContainerRegistry/ContainerRegistry/ChangeLog.md b/src/ContainerRegistry/ContainerRegistry/ChangeLog.md index 1945aafb4cf0..6a9084acad5e 100644 --- a/src/ContainerRegistry/ContainerRegistry/ChangeLog.md +++ b/src/ContainerRegistry/ContainerRegistry/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.1.0 * Fix typo in Remove-AzContainerRegistryReplication for Replication parameter diff --git a/src/DataBox/DataBox/ChangeLog.md b/src/DataBox/DataBox/ChangeLog.md index 1ea380450acc..338578bfba74 100644 --- a/src/DataBox/DataBox/ChangeLog.md +++ b/src/DataBox/DataBox/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.1.0 * General Availability of `Az.Databox` Module diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md b/src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md index ca7cf241bc7a..3c631706af80 100644 --- a/src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md +++ b/src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.1 * Fixed miscellaneous typos across module diff --git a/src/DataLakeStore/DataLakeStore/ChangeLog.md b/src/DataLakeStore/DataLakeStore/ChangeLog.md index e3b5b3aca88d..5b206d04af0d 100644 --- a/src/DataLakeStore/DataLakeStore/ChangeLog.md +++ b/src/DataLakeStore/DataLakeStore/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.2.2 * Fix hanging of Get-DataLakeStoreDeletedItem for any errors or remote exceptions. diff --git a/src/DataMigration/DataMigration/ChangeLog.md b/src/DataMigration/DataMigration/ChangeLog.md index 580216a3c075..8e009bf250ae 100644 --- a/src/DataMigration/DataMigration/ChangeLog.md +++ b/src/DataMigration/DataMigration/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.7.3 * Fixed miscellaneous typos across module diff --git a/src/DataShare/DataShare/ChangeLog.md b/src/DataShare/DataShare/ChangeLog.md index d14e1a722351..4e74748bb78f 100644 --- a/src/DataShare/DataShare/ChangeLog.md +++ b/src/DataShare/DataShare/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.1.0 * Added new Powershell cmdlets for AzDataShare diff --git a/src/DeploymentManager/DeploymentManager/ChangeLog.md b/src/DeploymentManager/DeploymentManager/ChangeLog.md index 76c970b11096..834c20da5da2 100644 --- a/src/DeploymentManager/DeploymentManager/ChangeLog.md +++ b/src/DeploymentManager/DeploymentManager/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.1 * Fixed miscellaneous typos across module diff --git a/src/DevSpaces/DevSpaces/ChangeLog.md b/src/DevSpaces/DevSpaces/ChangeLog.md index 99b198256fdc..ace25216cd6f 100644 --- a/src/DevSpaces/DevSpaces/ChangeLog.md +++ b/src/DevSpaces/DevSpaces/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.7.2 * Fixed miscellaneous typos across module diff --git a/src/DevTestLabs/DevTestLabs/ChangeLog.md b/src/DevTestLabs/DevTestLabs/ChangeLog.md index bb06cb9249e3..30025e9f1404 100644 --- a/src/DevTestLabs/DevTestLabs/ChangeLog.md +++ b/src/DevTestLabs/DevTestLabs/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.0 * General availability of `Az.DevTestLabs` module diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md b/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md index ddeb51db9274..bb18e40523cc 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md @@ -18,4 +18,4 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path diff --git a/src/Dns/Dns/ChangeLog.md b/src/Dns/Dns/ChangeLog.md index de05c4e4fe5e..964c4ea3f0d3 100644 --- a/src/Dns/Dns/ChangeLog.md +++ b/src/Dns/Dns/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.1.1 * Fixed a typo in `Set-AzDnsZone` help examples. diff --git a/src/EventGrid/EventGrid/ChangeLog.md b/src/EventGrid/EventGrid/ChangeLog.md index c603f12fb55f..631185fee0e6 100644 --- a/src/EventGrid/EventGrid/ChangeLog.md +++ b/src/EventGrid/EventGrid/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.2.2 * Fixed miscellaneous typos across module diff --git a/src/EventHub/EventHub/ChangeLog.md b/src/EventHub/EventHub/ChangeLog.md index e989b7ab8dd0..b6d70161cf1b 100644 --- a/src/EventHub/EventHub/ChangeLog.md +++ b/src/EventHub/EventHub/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.4.0 * Fixed miscellaneous typos across module diff --git a/src/FrontDoor/FrontDoor/ChangeLog.md b/src/FrontDoor/FrontDoor/ChangeLog.md index b3445ccdc661..0b20dd08d911 100644 --- a/src/FrontDoor/FrontDoor/ChangeLog.md +++ b/src/FrontDoor/FrontDoor/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.1.1 * Fixed miscellaneous typos across module diff --git a/src/GuestConfiguration/GuestConfiguration/ChangeLog.md b/src/GuestConfiguration/GuestConfiguration/ChangeLog.md index 3f3ac6ea3475..2bab1ff2c5d3 100644 --- a/src/GuestConfiguration/GuestConfiguration/ChangeLog.md +++ b/src/GuestConfiguration/GuestConfiguration/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.10.6 * Fixed the inconsistency of compliance status reporting when Policy is non-compliant due to parameter updates scenario. diff --git a/src/HDInsight/HDInsight/ChangeLog.md b/src/HDInsight/HDInsight/ChangeLog.md index fdd79877595f..8038852a7a93 100644 --- a/src/HDInsight/HDInsight/ChangeLog.md +++ b/src/HDInsight/HDInsight/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 2.0.2 * Call out breaking changes diff --git a/src/HealthcareApis/HealthcareApis/ChangeLog.md b/src/HealthcareApis/HealthcareApis/ChangeLog.md index 15daf2818a06..8cb3b2818c6d 100644 --- a/src/HealthcareApis/HealthcareApis/ChangeLog.md +++ b/src/HealthcareApis/HealthcareApis/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path * Exception Handling * Updated the powershell version to 1.0.0 * Updated the SDK version to 1.0.2 diff --git a/src/IotCentral/IotCentral/ChangeLog.md b/src/IotCentral/IotCentral/ChangeLog.md index cf2098fdaceb..d8cca8ffd107 100644 --- a/src/IotCentral/IotCentral/ChangeLog.md +++ b/src/IotCentral/IotCentral/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.7.1 * Added subdomain parameter to Set-AzureRmIoTCentralApp for updating subdomain diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md index 4b1aeca5c217..46e8ac3b9195 100644 --- a/src/IotHub/IotHub/ChangeLog.md +++ b/src/IotHub/IotHub/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path * Add new routing source: DigitalTwinChangeEvents * Minor bug fix: Get-AzIothub not returning subscriptionId diff --git a/src/KeyVault/KeyVault/ChangeLog.md b/src/KeyVault/KeyVault/ChangeLog.md index 650da99b0b00..02ed7df67513 100644 --- a/src/KeyVault/KeyVault/ChangeLog.md +++ b/src/KeyVault/KeyVault/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.3.1 * Fixed miscellaneous typos across module diff --git a/src/LogicApp/LogicApp/ChangeLog.md b/src/LogicApp/LogicApp/ChangeLog.md index c266fc1c024b..7f0663bf764a 100644 --- a/src/LogicApp/LogicApp/ChangeLog.md +++ b/src/LogicApp/LogicApp/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.3.1 * Fixed miscellaneous typos across module diff --git a/src/MachineLearning/MachineLearning/ChangeLog.md b/src/MachineLearning/MachineLearning/ChangeLog.md index 8ca2bf3856c0..784efc55d4aa 100644 --- a/src/MachineLearning/MachineLearning/ChangeLog.md +++ b/src/MachineLearning/MachineLearning/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.1.1 * Fixed miscellaneous typos across module diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md b/src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md index f8766c51bd11..a6f587872085 100644 --- a/src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md +++ b/src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.7.2 * Fixed miscellaneous typos across module diff --git a/src/ManagedServices/ManagedServices/ChangeLog.md b/src/ManagedServices/ManagedServices/ChangeLog.md index dd74243735f9..bd56a46be4ed 100644 --- a/src/ManagedServices/ManagedServices/ChangeLog.md +++ b/src/ManagedServices/ManagedServices/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.1 * Fixed miscellaneous typos across module diff --git a/src/ManagementPartner/ManagementPartner/ChangeLog.md b/src/ManagementPartner/ManagementPartner/ChangeLog.md index 7f287475ac98..382ce970a94c 100644 --- a/src/ManagementPartner/ManagementPartner/ChangeLog.md +++ b/src/ManagementPartner/ManagementPartner/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.7.1 * Update incorrect online help URLs diff --git a/src/Maps/Maps/ChangeLog.md b/src/Maps/Maps/ChangeLog.md index 106e2d95d72e..06b55fa96c94 100644 --- a/src/Maps/Maps/ChangeLog.md +++ b/src/Maps/Maps/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.7.1 * Added support for `S1` SKU diff --git a/src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md b/src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md index dce261e9eee3..90e69381c0d4 100644 --- a/src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md +++ b/src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.1 * Fixed documentation typo where "Azure" was all lowercase letters diff --git a/src/Media/Media/ChangeLog.md b/src/Media/Media/ChangeLog.md index ac4276f9d9af..5453d9f9cbb8 100644 --- a/src/Media/Media/ChangeLog.md +++ b/src/Media/Media/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.1.0 * Updated cmdlets with plural nouns to singular, and deprecated plural names. diff --git a/src/MixedReality/MixedReality/ChangeLog.md b/src/MixedReality/MixedReality/ChangeLog.md index f9fe2e1b0694..4ce5ae27cd03 100644 --- a/src/MixedReality/MixedReality/ChangeLog.md +++ b/src/MixedReality/MixedReality/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.1.2 * Fixed miscellaneous typos across module diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index 7a47abac7733..345de547c4f6 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path * New action group receivers added for action group -ItsmReceiver -VoiceReceiver diff --git a/src/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md index 3a6c0b4b3f1c..b63e0e0010c8 100644 --- a/src/NetAppFiles/NetAppFiles/ChangeLog.md +++ b/src/NetAppFiles/NetAppFiles/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.1.2 diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 7b3c677958d4..dec47755a9b4 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,7 +19,7 @@ ---> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path * Add new cmdlet Get-AzAvailableServiceAlias which can be called to get the aliases that can be used for Service Endpoint Policies. * Added support for the adding traffic selectors to Virtual Network Gateway Connections - New cmdlets added: diff --git a/src/NotificationHubs/NotificationHubs/ChangeLog.md b/src/NotificationHubs/NotificationHubs/ChangeLog.md index 598cf90c878c..069cab184424 100644 --- a/src/NotificationHubs/NotificationHubs/ChangeLog.md +++ b/src/NotificationHubs/NotificationHubs/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.1.0 * Updated cmdlets with plural nouns to singular, and deprecated plural names. diff --git a/src/OperationalInsights/OperationalInsights/ChangeLog.md b/src/OperationalInsights/OperationalInsights/ChangeLog.md index 78c194519c84..02aab412d836 100644 --- a/src/OperationalInsights/OperationalInsights/ChangeLog.md +++ b/src/OperationalInsights/OperationalInsights/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.3.3 * Fixed miscellaneous typos across module diff --git a/src/Peering/Peering/ChangeLog.md b/src/Peering/Peering/ChangeLog.md index 08cb27a63ed6..4b968d0a3cb3 100644 --- a/src/Peering/Peering/ChangeLog.md +++ b/src/Peering/Peering/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.1.4 * Added Peering Service Operations diff --git a/src/PolicyInsights/PolicyInsights/ChangeLog.md b/src/PolicyInsights/PolicyInsights/ChangeLog.md index 8a626d44751b..16d29ef3a469 100644 --- a/src/PolicyInsights/PolicyInsights/ChangeLog.md +++ b/src/PolicyInsights/PolicyInsights/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.1.3 * Fixed miscellaneous typos across module diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md b/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md index 1ac9e0e7fee6..06bdd92cc627 100644 --- a/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md +++ b/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.1.0 * Updated cmdlets with plural nouns to singular, and deprecated plural names. diff --git a/src/PrivateDns/PrivateDns/ChangeLog.md b/src/PrivateDns/PrivateDns/ChangeLog.md index 0418bcbee527..429aa7f9f640 100644 --- a/src/PrivateDns/PrivateDns/ChangeLog.md +++ b/src/PrivateDns/PrivateDns/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.1.3 * Added support for linking cross-tenant Vnets to Private DNS Zones diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index 2558c713f910..94272a4f6752 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.4.5 * Update AzureVMpolicy Object with ProtectedItemsCount Attribute diff --git a/src/RedisCache/RedisCache/ChangeLog.md b/src/RedisCache/RedisCache/ChangeLog.md index a67388c7a29d..edcf883213f1 100644 --- a/src/RedisCache/RedisCache/ChangeLog.md +++ b/src/RedisCache/RedisCache/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path * Updated `Set-AzRedisCache` reference documentation to include missing values for `-Size` parameter ## Version 1.1.0 diff --git a/src/Relay/Relay/ChangeLog.md b/src/Relay/Relay/ChangeLog.md index 493f8e8a5c2e..33bea68ffe8f 100644 --- a/src/Relay/Relay/ChangeLog.md +++ b/src/Relay/Relay/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.2 * Fixed miscellaneous typos across module diff --git a/src/Reservations/Reservations/ChangeLog.md b/src/Reservations/Reservations/ChangeLog.md index bc52508a998b..c35c116bed42 100644 --- a/src/Reservations/Reservations/ChangeLog.md +++ b/src/Reservations/Reservations/ChangeLog.md @@ -19,4 +19,4 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path diff --git a/src/ResourceGraph/ResourceGraph/ChangeLog.md b/src/ResourceGraph/ResourceGraph/ChangeLog.md index 79287d02ffe0..10b8c76e3e2f 100644 --- a/src/ResourceGraph/ResourceGraph/ChangeLog.md +++ b/src/ResourceGraph/ResourceGraph/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.7.6 * Ignoring subscription from azure context diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 77870ed3ce1d..ef0d738a1c3e 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.7.0 * Fix bug where New-AzRoleAssignment could not be called without parameter Scope. diff --git a/src/Search/Search/ChangeLog.md b/src/Search/Search/ChangeLog.md index 318b2564e705..a750db041e28 100644 --- a/src/Search/Search/ChangeLog.md +++ b/src/Search/Search/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.7.3 * Fixed miscellaneous typos across module diff --git a/src/Security/Security/ChangeLog.md b/src/Security/Security/ChangeLog.md index a1909379896d..cfe133c92340 100644 --- a/src/Security/Security/ChangeLog.md +++ b/src/Security/Security/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 0.7.6 * Fixed miscellaneous typos across module diff --git a/src/ServiceBus/ServiceBus/ChangeLog.md b/src/ServiceBus/ServiceBus/ChangeLog.md index 25fb4d242249..78052ce31601 100644 --- a/src/ServiceBus/ServiceBus/ChangeLog.md +++ b/src/ServiceBus/ServiceBus/ChangeLog.md @@ -19,7 +19,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.4.0 * Fixed miscellaneous typos across module diff --git a/src/ServiceFabric/ServiceFabric/ChangeLog.md b/src/ServiceFabric/ServiceFabric/ChangeLog.md index a7daa1fd6750..11f314e5adc9 100644 --- a/src/ServiceFabric/ServiceFabric/ChangeLog.md +++ b/src/ServiceFabric/ServiceFabric/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.2.0 * Fixed typo in example for `Update-AzServiceFabricReliability` reference documentation diff --git a/src/SignalR/SignalR/ChangeLog.md b/src/SignalR/SignalR/ChangeLog.md index 156d25bd3305..4b435b20cbf0 100644 --- a/src/SignalR/SignalR/ChangeLog.md +++ b/src/SignalR/SignalR/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.1.0 * Add Update, Restart, CheckNameAvailability, GetUsage Cmdlets diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index ea17ba6ffdc0..0cd7b13ddcc9 100644 --- a/src/Sql/Sql/ChangeLog.md +++ b/src/Sql/Sql/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.14.2 * Update example in reference documentation for `Get-AzSqlElasticPool` diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index b67da0bb84e2..c7358b48be8c 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path * Upgrade Storage Client Library to 11.1.0 * List containers with Management plane API, will list with NextPageLink - Get-AzRmStorageContainer diff --git a/src/StorageSync/StorageSync/ChangeLog.md b/src/StorageSync/StorageSync/ChangeLog.md index 3e248ef3959b..13125b9eb24e 100644 --- a/src/StorageSync/StorageSync/ChangeLog.md +++ b/src/StorageSync/StorageSync/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path * Fix Issue 9810 in Reset-AzStorageSyncServerCertificate. diff --git a/src/StreamAnalytics/StreamAnalytics/ChangeLog.md b/src/StreamAnalytics/StreamAnalytics/ChangeLog.md index 1b422dc76b6c..ec96a56f292f 100644 --- a/src/StreamAnalytics/StreamAnalytics/ChangeLog.md +++ b/src/StreamAnalytics/StreamAnalytics/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.0 * General availability of `Az.StreamAnalytics` module diff --git a/src/Subscription/Subscription/ChangeLog.md b/src/Subscription/Subscription/ChangeLog.md index ddeb51db9274..bb18e40523cc 100644 --- a/src/Subscription/Subscription/ChangeLog.md +++ b/src/Subscription/Subscription/ChangeLog.md @@ -18,4 +18,4 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path diff --git a/src/TrafficManager/TrafficManager/ChangeLog.md b/src/TrafficManager/TrafficManager/ChangeLog.md index 0942f9502223..c8e46173385d 100644 --- a/src/TrafficManager/TrafficManager/ChangeLog.md +++ b/src/TrafficManager/TrafficManager/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.0.2 * Fixed miscellaneous typos across module diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md index 9b2d1800c0d8..142dfb6fc160 100644 --- a/src/Websites/Websites/ChangeLog.md +++ b/src/Websites/Websites/ChangeLog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -* update references in .psd1 to use relative path +* Update references in .psd1 to use relative path ## Version 1.4.2 * Fixing issue where webapp Tags were getting deleted when migrating App to new ASPwhere webapp Tags were getting deleted when migrating App to new ASP From 4a1fbc95f885b488cdfee93e4ba0774a9855b88a Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Wed, 9 Oct 2019 16:15:32 +0800 Subject: [PATCH 11/15] apply relative path for SqlVirtualMachine.psd1 --- .../SqlVirtualMachine/Az.SqlVirtualMachine.psd1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 b/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 index 14d7c64645ed..3f1c17b0def6 100644 --- a/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 +++ b/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.2'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.SqlVirtualMachine.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.SqlVirtualMachine.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. ScriptsToProcess = @() @@ -63,10 +63,10 @@ ScriptsToProcess = @() TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.generated.format.ps1xml' +FormatsToProcess = 'Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.SqlVirtualMachine.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() From 74ec7a791b1874786cfaa37b7d8c2e7d1df8ec7a Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Thu, 28 Nov 2019 19:00:19 +0800 Subject: [PATCH 12/15] update psd1 and change log for new modules --- src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 | 6 +++--- src/DataBoxEdge/DataBoxEdge/ChangeLog.md | 1 + src/Maintenance/Maintenance/Az.Maintenance.psd1 | 8 ++++---- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 b/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 index 16606997f914..d7113ce1b645 100644 --- a/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 +++ b/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.1'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.EdgeGateway.dll' +RequiredAssemblies = 'Microsoft.Azure.Management.EdgeGateway.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,10 +66,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.EdgeGateway.dll' # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = - '.\Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.generated.format.ps1xml' + 'Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.generated.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() diff --git a/src/DataBoxEdge/DataBoxEdge/ChangeLog.md b/src/DataBoxEdge/DataBoxEdge/ChangeLog.md index d33d0def19c7..bef373e853cf 100644 --- a/src/DataBoxEdge/DataBoxEdge/ChangeLog.md +++ b/src/DataBoxEdge/DataBoxEdge/ChangeLog.md @@ -20,6 +20,7 @@ ## Upcoming Release +* Update references in .psd1 to use relative path ## Version 1.0.0 * Added cmdlet `Get-AzDataBoxEdgeOrder` diff --git a/src/Maintenance/Maintenance/Az.Maintenance.psd1 b/src/Maintenance/Maintenance/Az.Maintenance.psd1 index 50711e4dd0db..5dc2f20f0f2e 100644 --- a/src/Maintenance/Maintenance/Az.Maintenance.psd1 +++ b/src/Maintenance/Maintenance/Az.Maintenance.psd1 @@ -56,8 +56,8 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.4'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\AutoMapper.dll', - '.\Microsoft.Azure.Management.Maintenance.dll' +RequiredAssemblies = 'AutoMapper.dll', + 'Microsoft.Azure.Management.Maintenance.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -66,10 +66,10 @@ RequiredAssemblies = '.\AutoMapper.dll', # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = '.\Maintenance.format.ps1xml' +FormatsToProcess = 'Maintenance.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -NestedModules = @('.\Microsoft.Azure.PowerShell.Cmdlets.Maintenance.dll') +NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Maintenance.dll') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @() From 0098f27022fde837bc34a014ed625ef44dc93466 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Tue, 3 Dec 2019 16:47:54 +0800 Subject: [PATCH 13/15] add changelog for DataFactory --- src/DataFactory/DataFactoryV2/Changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DataFactory/DataFactoryV2/Changelog.md b/src/DataFactory/DataFactoryV2/Changelog.md index 9e4ed2c0a174..58bf54231fe0 100644 --- a/src/DataFactory/DataFactoryV2/Changelog.md +++ b/src/DataFactory/DataFactoryV2/Changelog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release Update ADF .Net SDK version to 4.5.0 +* Update references in .psd1 to use relative path ## Version 1.5.0 * Update ADF .Net SDK version to 4.4.0 From 763d82fa535d25d28e1389ef0ad6f4b0a39f284c Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Tue, 3 Dec 2019 16:51:51 +0800 Subject: [PATCH 14/15] update change log for Kusto --- src/Kusto/Kusto/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Kusto/Kusto/ChangeLog.md b/src/Kusto/Kusto/ChangeLog.md index 5ab1dc5ace0a..3e216f549b36 100644 --- a/src/Kusto/Kusto/ChangeLog.md +++ b/src/Kusto/Kusto/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Update references in .psd1 to use relative path ## Version 0.1.2 * Fixed miscellaneous typos across module From 2f0437c3b4ef9d52478564bd0a9e6f95d85bee8d Mon Sep 17 00:00:00 2001 From: Yeming Liu Date: Tue, 3 Dec 2019 17:06:12 +0800 Subject: [PATCH 15/15] correct syntax error in datafactory's changelog --- src/DataFactory/DataFactoryV2/Changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DataFactory/DataFactoryV2/Changelog.md b/src/DataFactory/DataFactoryV2/Changelog.md index 58bf54231fe0..5b5f27f30248 100644 --- a/src/DataFactory/DataFactoryV2/Changelog.md +++ b/src/DataFactory/DataFactoryV2/Changelog.md @@ -18,7 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release -Update ADF .Net SDK version to 4.5.0 +* Update ADF .Net SDK version to 4.5.0 * Update references in .psd1 to use relative path ## Version 1.5.0