diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1 index acb488233d6c..51865ae26512 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/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md index 4fedffc15440..a4643f89c227 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 * Set correct UserAgent for client-side telemetry for Az 4.0 preview ## Version 1.6.4 diff --git a/src/Advisor/Advisor/Az.Advisor.psd1 b/src/Advisor/Advisor/Az.Advisor.psd1 index 2789b49e1b93..293d4ab2ce62 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.4'; }) # 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/Advisor/Advisor/ChangeLog.md b/src/Advisor/Advisor/ChangeLog.md index bd27d7988b9a..e809e038d2ab 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.1.0 * Added new category "Operational Excellence" to Get-AzAdvisorRecommendation cmdlet. diff --git a/src/Aks/Aks/Az.Aks.psd1 b/src/Aks/Aks/Az.Aks.psd1 index a4b277d7c0a1..082a2c95c816 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.4'; }) # 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/Aks/Aks/ChangeLog.md b/src/Aks/Aks/ChangeLog.md index 0b084fb8e53f..5554328f11e6 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/Az.AlertsManagement.psd1 b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 index 2f3233047e9a..a55fd2175f84 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.4'; }) # 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/AlertsManagement/AlertsManagement/ChangeLog.md b/src/AlertsManagement/AlertsManagement/ChangeLog.md index 41ab50d07744..42118428b93a 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/Az.AnalysisServices.psd1 b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 index a0eebb2f6e15..4c962185661a 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.4'; }) # 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/AnalysisServices/AnalysisServices/ChangeLog.md b/src/AnalysisServices/AnalysisServices/ChangeLog.md index dea39582de9e..ce3f084d5bc0 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/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 index 72d0bdcc3bb2..b79ab275852e 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.4'; }) # 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/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md index 2db186c977fb..7d5a74f7e855 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.2 * **Set-AzApiManagementApi** - Added support for Updating Api into ApiVersionSet diff --git a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 index f5f73747e066..ce4da72767a5 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.4'; }) # 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/ApplicationInsights/ApplicationInsights/ChangeLog.md b/src/ApplicationInsights/ApplicationInsights/ChangeLog.md index 83ddf1ed6c48..e8be6844b876 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/Az.Attestation.psd1 b/src/Attestation/Attestation/Az.Attestation.psd1 index e24683b8ca2c..350e4c6246c3 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.4'; }) # 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/Attestation/Attestation/ChangeLog.md b/src/Attestation/Attestation/ChangeLog.md index bd7f1b262b39..cedebcd2df77 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/Az.Automation.psd1 b/src/Automation/Automation/Az.Automation.psd1 index 2c5256a5a2e6..abe93dd0c3d7 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.4'; }) # 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/Automation/Automation/ChangeLog.md b/src/Automation/Automation/ChangeLog.md index df25b33bc30a..5b8579c7b182 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.4 diff --git a/src/Batch/Batch/Az.Batch.psd1 b/src/Batch/Batch/Az.Batch.psd1 index f31108e7f261..26f368c0fdc3 100644 --- a/src/Batch/Batch/Az.Batch.psd1 +++ b/src/Batch/Batch/Az.Batch.psd1 @@ -56,14 +56,14 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.4'; }) # 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', - '.\Microsoft.Net.Http.Headers.dll', - '.\System.Text.Encodings.Web.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', + 'Microsoft.Net.Http.Headers.dll', + 'System.Text.Encodings.Web.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -72,10 +72,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/Batch/Batch/ChangeLog.md b/src/Batch/Batch/ChangeLog.md index 22bd8bd6a204..1c968f917681 100644 --- a/src/Batch/Batch/ChangeLog.md +++ b/src/Batch/Batch/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Update references in .psd1 to use relative path * Fix issue #10602, where **New-AzBatchPool** did not properly send `VirtualMachineConfiguration.ContainerConfiguration` or `VirtualMachineConfiguration.DataDisks` to the server. ## Version 2.0.1 diff --git a/src/Billing/Billing/Az.Billing.psd1 b/src/Billing/Billing/Az.Billing.psd1 index 8292fc56471f..40c82a4a447c 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.4'; }) # 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/Billing/Billing/ChangeLog.md b/src/Billing/Billing/ChangeLog.md index 6d252d4b3516..d5a6fcfec0af 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/Az.Blueprint.psd1 b/src/Blueprint/Blueprint/Az.Blueprint.psd1 index cea4c2adf89c..d26ef0eca10f 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.4'; }) # 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/Blueprint/Blueprint/ChangeLog.md b/src/Blueprint/Blueprint/ChangeLog.md index 9bb801067c58..0d5c3c5c0984 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 * Bug Fix: File/folder names should be platform agnostic for Export/Import cmdlets ## Version 0.2.7 diff --git a/src/Cdn/Cdn/Az.Cdn.psd1 b/src/Cdn/Cdn/Az.Cdn.psd1 index 3b7471555be6..e00ec0a89d17 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.4'; }) # 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/Cdn/Cdn/ChangeLog.md b/src/Cdn/Cdn/ChangeLog.md index 4df13ca99606..f48998563de8 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.4.0 * Introduced UrlRewriteAction and CacheKeyQueryStringAction to RulesEngine. diff --git a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 index 9fb2b2391d44..2bafb182de1f 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.4'; }) # 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/CognitiveServices/CognitiveServices/ChangeLog.md b/src/CognitiveServices/CognitiveServices/ChangeLog.md index da81dadbda52..d1bb9927c7d3 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/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1 index 879fd4f39268..9048c1f4e4ab 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.4'; }) # 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/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 26acd3369f0c..e2ab34c5c53d 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 3.1.0 * VM Reapply feature diff --git a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 index 3fae5139ac2c..d844957677f5 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.4'; }) # 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/ContainerInstance/ContainerInstance/ChangeLog.md b/src/ContainerInstance/ContainerInstance/ChangeLog.md index 7a325dd29bb3..b2f64b380784 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/Az.ContainerRegistry.psd1 b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 index a883c19e867f..d7e5cd44f7d9 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.4'; }) # 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/ContainerRegistry/ContainerRegistry/ChangeLog.md b/src/ContainerRegistry/ContainerRegistry/ChangeLog.md index a89f5a81458e..6a9084acad5e 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/Az.DataBox.psd1 b/src/DataBox/DataBox/Az.DataBox.psd1 index 970a474bc524..9d605c4d991e 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.4'; }) # 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/DataBox/DataBox/ChangeLog.md b/src/DataBox/DataBox/ChangeLog.md index af3b9c778118..338578bfba74 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/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/DataFactory/DataFactoryV2/Az.DataFactory.psd1 b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 index a3389d9baa90..511bd2deb4d5 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.4'; }) # 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/DataFactory/DataFactoryV2/Changelog.md b/src/DataFactory/DataFactoryV2/Changelog.md index 9e4ed2c0a174..5b5f27f30248 100644 --- a/src/DataFactory/DataFactoryV2/Changelog.md +++ b/src/DataFactory/DataFactoryV2/Changelog.md @@ -18,7 +18,8 @@ - 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 * Update ADF .Net SDK version to 4.4.0 diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 index 91ff643ddfd3..1d7f389deaae 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.4'; }) # 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/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md b/src/DataLakeAnalytics/DataLakeAnalytics/ChangeLog.md index 4d0198bed30f..3c631706af80 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/Az.DataLakeStore.psd1 b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 index b5ee850c0a77..6aa36439b8df 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.4'; }) # 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/DataLakeStore/DataLakeStore/ChangeLog.md b/src/DataLakeStore/DataLakeStore/ChangeLog.md index eb0bc380533d..f5613c1c06f1 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.5 * Update documentation of Get-AzDataLakeStoreDeletedItem and Restore-AzDataLakeStoreDeletedItem diff --git a/src/DataMigration/DataMigration/Az.DataMigration.psd1 b/src/DataMigration/DataMigration/Az.DataMigration.psd1 index cd1410f621a3..deb09a4c9909 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.4'; }) # 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/DataMigration/DataMigration/ChangeLog.md b/src/DataMigration/DataMigration/ChangeLog.md index b15f5d9ad2e5..8e009bf250ae 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/Az.DataShare.psd1 b/src/DataShare/DataShare/Az.DataShare.psd1 index c75512a81556..c4415573fbab 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.4'; }) # 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/DataShare/DataShare/ChangeLog.md b/src/DataShare/DataShare/ChangeLog.md index 83b99ef3b093..4e74748bb78f 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/Az.DeploymentManager.psd1 b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 index 875e3916e170..b4da71737589 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.4'; }) # 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/DeploymentManager/DeploymentManager/ChangeLog.md b/src/DeploymentManager/DeploymentManager/ChangeLog.md index b58ec40c5702..834c20da5da2 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/Az.DevSpaces.psd1 b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 index fff68456340e..f9ae34a9df12 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.4'; }) # 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/DevSpaces/DevSpaces/ChangeLog.md b/src/DevSpaces/DevSpaces/ChangeLog.md index 83833fd0e0ac..ace25216cd6f 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/Az.DevTestLabs.psd1 b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 index 3b0e4ca8fd18..87cd0e82360f 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.4'; }) # 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/DevTestLabs/DevTestLabs/ChangeLog.md b/src/DevTestLabs/DevTestLabs/ChangeLog.md index ece4ee8507e0..30025e9f1404 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/Az.DeviceProvisioningServices.psd1 b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 index 824cbc830f5a..7e65949cdd84 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.4'; }) # 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/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md b/src/DeviceProvisioningServices/DeviceProvisioningServices/ChangeLog.md index bc6d9ca28ac7..bb18e40523cc 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/Az.Dns.psd1 b/src/Dns/Dns/Az.Dns.psd1 index 3912eaf55c47..137b4ceddfcc 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.4'; }) # 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/Dns/Dns/ChangeLog.md b/src/Dns/Dns/ChangeLog.md index f93cc40640fd..964c4ea3f0d3 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/Az.EventGrid.psd1 b/src/EventGrid/EventGrid/Az.EventGrid.psd1 index d07ff64da1b6..e72c6530801d 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.4'; }) # 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/EventGrid/EventGrid/ChangeLog.md b/src/EventGrid/EventGrid/ChangeLog.md index 326c2278c851..631185fee0e6 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/Az.EventHub.psd1 b/src/EventHub/EventHub/Az.EventHub.psd1 index f33eb04d9985..d597f5cc24e3 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.4'; }) # 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/EventHub/EventHub/ChangeLog.md b/src/EventHub/EventHub/ChangeLog.md index 1fa818907094..c1811f919d08 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.1 * Fix for issue 10301 : Fix the SAS Token date format diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 index d0c09f5fc39e..2d70d35d297e 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.4'; }) # 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/FrontDoor/FrontDoor/ChangeLog.md b/src/FrontDoor/FrontDoor/ChangeLog.md index 2ea13a16c966..c53755f41366 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 * Added WAF managed rules exclusion support * Add SocketAddr to auto-complete diff --git a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 index 688b9d942716..2cd6eca7fa30 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.4'; }) # 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/GuestConfiguration/GuestConfiguration/ChangeLog.md b/src/GuestConfiguration/GuestConfiguration/ChangeLog.md index 24c08cae66a2..2bab1ff2c5d3 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/Az.HDInsight.psd1 b/src/HDInsight/HDInsight/Az.HDInsight.psd1 index a6d512215ae3..98f126ef4f76 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.4'; }) # 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/HDInsight/HDInsight/ChangeLog.md b/src/HDInsight/HDInsight/ChangeLog.md index e9a2d92e1ae7..8b2b2f9e362e 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 3.0.0 * Fixed the bug that customer will get "Not a valid Base-64 string" error when using Get-AzHDInsightCluster to get the cluster with ADLSGen1 storage. diff --git a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 index 213b79da765f..929b112c7c0e 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.4'; }) # 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/HealthcareApis/HealthcareApis/ChangeLog.md b/src/HealthcareApis/HealthcareApis/ChangeLog.md index 4eb3d4e3dd15..5735850c0fcc 100644 --- a/src/HealthcareApis/HealthcareApis/ChangeLog.md +++ b/src/HealthcareApis/HealthcareApis/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release +* Update references in .psd1 to use relative path +* Exception Handling ## Version 1.0.0 * Updated the powershell version to 1.0.0 diff --git a/src/IotCentral/IotCentral/Az.IotCentral.psd1 b/src/IotCentral/IotCentral/Az.IotCentral.psd1 index 08916eb888fd..a3b8b8d3b1d4 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.4'; }) # 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/IotCentral/IotCentral/ChangeLog.md b/src/IotCentral/IotCentral/ChangeLog.md index 4038ae472c13..5cd3132e01a4 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 * Remove subdomain and resource name checks for create new IotCentral application, it will be handled by resource provider for idempotent ## Version 0.7.1 diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1 index 32fd613db34a..b0678180df65 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.4'; }) # 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/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md index d76fdc1baee4..4bb0fae40d3b 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 2.0.0 diff --git a/src/KeyVault/KeyVault/Az.KeyVault.psd1 b/src/KeyVault/KeyVault/Az.KeyVault.psd1 index 56654af9f6c6..e6c93cd38732 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.4'; }) # 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/KeyVault/KeyVault/ChangeLog.md b/src/KeyVault/KeyVault/ChangeLog.md index e566d3e116b2..cb1b747bf0d4 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 * Fixed error accessing value that is potentially not set * Elliptic Curve Cryptography Certificate Managment - Added support to specify the Curve for Certificate Policies diff --git a/src/Kusto/Kusto/Az.Kusto.psd1 b/src/Kusto/Kusto/Az.Kusto.psd1 index d6d66e8f81e4..d50c0d8e674b 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.4'; }) # 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/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 diff --git a/src/LogicApp/LogicApp/Az.LogicApp.psd1 b/src/LogicApp/LogicApp/Az.LogicApp.psd1 index cb1a6041cadd..a93a612ab9bf 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.4'; }) # 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/LogicApp/LogicApp/ChangeLog.md b/src/LogicApp/LogicApp/ChangeLog.md index 7d63058bc878..7f0663bf764a 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/Az.MachineLearning.psd1 b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 index af916c130d34..d0c3ff9ec193 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.4'; }) # 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/MachineLearning/MachineLearning/ChangeLog.md b/src/MachineLearning/MachineLearning/ChangeLog.md index 83036216ce61..784efc55d4aa 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/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 = @() diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 index b04f6d152766..3f046159c17c 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.4'; }) # 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/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md b/src/ManagedServiceIdentity/ManagedServiceIdentity/ChangeLog.md index 954f6abd741e..a6f587872085 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/Az.ManagedServices.psd1 b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 index 7a867574ac8f..a174871389d0 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.4'; }) # 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/ManagedServices/ManagedServices/ChangeLog.md b/src/ManagedServices/ManagedServices/ChangeLog.md index eff81cc5ce66..bd56a46be4ed 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/Az.ManagementPartner.psd1 b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 index dc46c482a477..704a8df70576 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.4'; }) # 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/ManagementPartner/ManagementPartner/ChangeLog.md b/src/ManagementPartner/ManagementPartner/ChangeLog.md index 56886a86eaa0..382ce970a94c 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/Az.Maps.psd1 b/src/Maps/Maps/Az.Maps.psd1 index 45a490601b3f..f419ad0cc789 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.4'; }) # 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/Maps/Maps/ChangeLog.md b/src/Maps/Maps/ChangeLog.md index 54e4255738b2..06b55fa96c94 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/Az.MarketplaceOrdering.psd1 b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 index 383eb11b54b2..da64c8236319 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.4'; }) # 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/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md b/src/MarketplaceOrdering/MarketplaceOrdering/ChangeLog.md index 0cec65912b84..90e69381c0d4 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/Az.Media.psd1 b/src/Media/Media/Az.Media.psd1 index ecb1693071fb..4d3be438373a 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.4'; }) # 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/Media/Media/ChangeLog.md b/src/Media/Media/ChangeLog.md index 65d2ac4e52fa..5453d9f9cbb8 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/Az.MixedReality.psd1 b/src/MixedReality/MixedReality/Az.MixedReality.psd1 index 2f70373ba827..28ff08855caf 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.4'; }) # 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/MixedReality/MixedReality/ChangeLog.md b/src/MixedReality/MixedReality/ChangeLog.md index d240ce909f02..4ce5ae27cd03 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/Az.Monitor.psd1 b/src/Monitor/Monitor/Az.Monitor.psd1 index 664fe38bedd0..d061ef72e606 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.4'; }) # 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/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index b995efca6318..46e172631eb8 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 * Adding optional argument to the Add Diagnostic Settings command. A switch argument that if present indicates that the export to Log Analytics must be to a fixed schema (a.k.a. dedicated, data type) ## Version 1.4.0 diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 index 44f18032a4e3..b9f96fa6b9ef 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.4'; }) # 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/NetAppFiles/NetAppFiles/ChangeLog.md b/src/NetAppFiles/NetAppFiles/ChangeLog.md index 3856c196accc..8ae196b1c5c1 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 * Includes some additional volume properties associated with upcoming replication operations diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 8ed719cdb523..2e735defed53 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.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.Network.dll', - '.\Microsoft.Azure.Management.Sql.dll' +RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Network.dll', + 'Microsoft.Azure.Management.Sql.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', '.\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/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index a9a9810d1501..1d021ce191bb 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 2.1.0 * Change `Start-AzVirtualNetworkGatewayConnectionPacketCapture.md` and `Start-AzVirtualnetworkGatewayPacketCapture.md` FilterData option examples. diff --git a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 index 4ed25ca352db..d76357d6c1c1 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.4'; }) # 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/NotificationHubs/NotificationHubs/ChangeLog.md b/src/NotificationHubs/NotificationHubs/ChangeLog.md index 17278221b764..069cab184424 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/Az.OperationalInsights.psd1 b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 index 2a4fae71791e..63fb96d59fbb 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.4'; }) # 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/OperationalInsights/OperationalInsights/ChangeLog.md b/src/OperationalInsights/OperationalInsights/ChangeLog.md index 4ab044ae7890..02aab412d836 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/Az.Peering.psd1 b/src/Peering/Peering/Az.Peering.psd1 index aae132dd5ebc..94341022001c 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.4'; }) # 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/Peering/Peering/ChangeLog.md b/src/Peering/Peering/ChangeLog.md index 5f0439138637..734f156200b9 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.6 * Fixed bug in Peering location diff --git a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 index 3d9c0da1a1f9..f111dcb4d526 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.4'; }) # 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/PolicyInsights/PolicyInsights/ChangeLog.md b/src/PolicyInsights/PolicyInsights/ChangeLog.md index 74ecaa473cad..16d29ef3a469 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/Az.PowerBIEmbedded.psd1 b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 index a7621013f186..eae8fda2c755 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.4'; }) # 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/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md b/src/PowerBIEmbedded/PowerBIEmbedded/ChangeLog.md index d0bc711b823b..06bdd92cc627 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/Az.PrivateDns.psd1 b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 index b38dfbba65e8..8629eff07d8d 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.4'; }) # 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/PrivateDns/PrivateDns/ChangeLog.md b/src/PrivateDns/PrivateDns/ChangeLog.md index cabede1f10e2..35a6734fa72c 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 1.0.1 * Updated PrivateDns .net sdk to version 1.0.0 diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 index d07bf07a4e47..6a91819abe28 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.4'; }) # 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/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index 95123d89ab3b..6f95a251fd7a 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release +* Update references in .psd1 to use relative path +* Added SoftDelete feature for VM and added tests for softdelete * Azure Site Recovery support for Azure Disk Encryption One Pass for Azure to Azure. ## Version 2.1.0 diff --git a/src/RedisCache/RedisCache/Az.RedisCache.psd1 b/src/RedisCache/RedisCache/Az.RedisCache.psd1 index b890f266af24..0ab3231f9820 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.4'; }) # 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/RedisCache/RedisCache/ChangeLog.md b/src/RedisCache/RedisCache/ChangeLog.md index cf305752a503..4d96e5ca8a98 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 ## Version 1.2.0 * Added `MinimumTlsVersion` parameter in `New-AzRedisCache` and `Set-AzRedisCache` cmdlets. Also, added `MinimumTlsVersion` in the output of `Get-AzRedisCache` cmdlet. diff --git a/src/Relay/Relay/Az.Relay.psd1 b/src/Relay/Relay/Az.Relay.psd1 index e83aae8fc1dd..c8c33d1ef825 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.4'; }) # 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/Relay/Relay/ChangeLog.md b/src/Relay/Relay/ChangeLog.md index a011aad59d8d..33bea68ffe8f 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/Az.Reservations.psd1 b/src/Reservations/Reservations/Az.Reservations.psd1 index 07b468c3b0dd..86ae089a43c9 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.4'; }) # 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/Reservations/Reservations/ChangeLog.md b/src/Reservations/Reservations/ChangeLog.md index 9439bd497c58..eb00ad9cb87d 100644 --- a/src/Reservations/Reservations/ChangeLog.md +++ b/src/Reservations/Reservations/ChangeLog.md @@ -19,9 +19,10 @@ - Additional information about change #1 --> ## Upcoming Release +* Update references in .psd1 to use relative path * Add billing plan details in getCatalog - new object in the response of get-Catalog * Add new Api CalculatePrice - new Api for calculate ReservationOrder price * Add new Api Purchase - - new Api for Purchase ReservationOrder in powershell \ No newline at end of file + - new Api for Purchase ReservationOrder in powershell diff --git a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 index c77f01135d77..68b6fae3b24a 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.4'; }) # 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/ResourceGraph/ResourceGraph/ChangeLog.md b/src/ResourceGraph/ResourceGraph/ChangeLog.md index 28219361a5df..cc2144be7406 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/Az.Resources.psd1 b/src/Resources/Resources/Az.Resources.psd1 index b5c48756e1d0..e76c7c26bcf4 100644 --- a/src/Resources/Resources/Az.Resources.psd1 +++ b/src/Resources/Resources/Az.Resources.psd1 @@ -57,16 +57,16 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.4'; }) # 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', - '.\System.Runtime.CompilerServices.Unsafe.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', + 'System.Runtime.CompilerServices.Unsafe.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() @@ -75,13 +75,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/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index df54e121f1b4..0d8f1483b070 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 * Fix an issue where template deployment fails to read a template parameter if its name conflicts with some built-in parameter name. ## Version 1.8.0 diff --git a/src/Search/Search/Az.Search.psd1 b/src/Search/Search/Az.Search.psd1 index 74e9bd3abf80..cf555320973c 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.4'; }) # 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/Search/Search/ChangeLog.md b/src/Search/Search/ChangeLog.md index 48ba5d0335a3..a750db041e28 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/Az.Security.psd1 b/src/Security/Security/Az.Security.psd1 index 24e240fdd9a0..44d5ca3ed50d 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.4'; }) # 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/Security/Security/ChangeLog.md b/src/Security/Security/ChangeLog.md index bdaef716b1ee..cfe133c92340 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/Az.ServiceBus.psd1 b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 index a3eb664b2646..f0b9bcde0858 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.4'; }) # 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/ServiceBus/ServiceBus/ChangeLog.md b/src/ServiceBus/ServiceBus/ChangeLog.md index 8267a2ba81e8..78052ce31601 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/Az.ServiceFabric.psd1 b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 index b19ba18a939a..343bcfe1e387 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.4'; }) # 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/ServiceFabric/ServiceFabric/ChangeLog.md b/src/ServiceFabric/ServiceFabric/ChangeLog.md index a323a695f61b..0e53ba8db64a 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 2.0.0 * Remove Add-AzServiceFabricApplicationCertificate cmdlet as this scenario is covered by Add-AzVmssSecret. diff --git a/src/SignalR/SignalR/Az.SignalR.psd1 b/src/SignalR/SignalR/Az.SignalR.psd1 index 3350f523addd..943db6b6a650 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.4'; }) # 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/SignalR/SignalR/ChangeLog.md b/src/SignalR/SignalR/ChangeLog.md index 41a471f84e5a..4b435b20cbf0 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/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1 index 76aed7a06dde..1f93ac4f61b0 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.4'; }) # 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 = @() diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md index 651c08945a5c..6705667c7e48 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 * Upgraded storage creation in Vulnerability Assessment auto enablement to StorageV2 ## Version 2.1.0 diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 b/src/SqlVirtualMachine/SqlVirtualMachine/Az.SqlVirtualMachine.psd1 index 94c715200d39..548b08d6cbcc 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,11 +63,10 @@ RequiredAssemblies = '.\Microsoft.Azure.Management.SqlVirtualMachine.dll' # 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 = @() diff --git a/src/SqlVirtualMachine/SqlVirtualMachine/ChangeLog.md b/src/SqlVirtualMachine/SqlVirtualMachine/ChangeLog.md index 89b3857a27fe..74f797dc8258 100644 --- a/src/SqlVirtualMachine/SqlVirtualMachine/ChangeLog.md +++ b/src/SqlVirtualMachine/SqlVirtualMachine/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 * Added to the Az roll-up module diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index 0949bcd055ef..be6b009b9729 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.4'; }) # 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/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index e036e0a04fe0..7991be7eb6e9 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 * Support generate Blob/Constainer Idenity based SAS token with Storage Context based on Oauth authentication - New-AzStorageContainerSASToken - New-AzStorageBlobSASToken diff --git a/src/StorageSync/StorageSync/Az.StorageSync.psd1 b/src/StorageSync/StorageSync/Az.StorageSync.psd1 index 93f574a20e5c..c4f4a3729528 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.4'; }) # 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/StorageSync/StorageSync/ChangeLog.md b/src/StorageSync/StorageSync/ChangeLog.md index 15ae172da257..41cc6ce6e408 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.1 diff --git a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 index 072911580462..5be340c392d8 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.4'; }) # 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/StreamAnalytics/StreamAnalytics/ChangeLog.md b/src/StreamAnalytics/StreamAnalytics/ChangeLog.md index 63193f4d7cae..ec96a56f292f 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/Az.Subscription.psd1 b/src/Subscription/Subscription/Az.Subscription.psd1 index 22d32bdf7c9b..406d60a7caf7 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.4'; }) # 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/Subscription/Subscription/ChangeLog.md b/src/Subscription/Subscription/ChangeLog.md index bc6d9ca28ac7..bb18e40523cc 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/Az.TrafficManager.psd1 b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 index 1c474611a33c..7ac630f64386 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.4'; }) # 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/TrafficManager/TrafficManager/ChangeLog.md b/src/TrafficManager/TrafficManager/ChangeLog.md index b03e641a110d..c8e46173385d 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/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1 index 44efeb45c620..71cae121cc6b 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.4'; }) # 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/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md index 2755a77c0203..a42a05713ef5 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.5.0 * Set-AzWebApp updating ASP of an app was failing 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) {