Update *psd1 for every module to use relative path, fix tooling issue in tools/CheckAssemblies.ps1
This commit is contained in:
Yabo Hu 2019-12-04 09:17:33 +08:00 коммит произвёл GitHub
Родитель 37b4a4c20f 2f0437c3b4
Коммит a2c757637b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
154 изменённых файлов: 388 добавлений и 311 удалений

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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.

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -20,6 +20,7 @@
## Upcoming Release
* Update references in .psd1 to use relative path
## Version 0.1.2
* Fixed miscellaneous typos across module

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Update references in .psd1 to use relative path
## Version 1.3.4

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -19,6 +19,7 @@
-->
## Upcoming Release
* Update references in .psd1 to use relative path
## Version 1.4.0
* Introduced UrlRewriteAction and CacheKeyQueryStringAction to RulesEngine.

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -19,6 +19,7 @@
-->
## Upcoming Release
* Update references in .psd1 to use relative path
## Version 0.1.0
* General Availability of `Az.Databox` Module

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -20,6 +20,7 @@
## Upcoming Release
* Update references in .psd1 to use relative path
## Version 1.0.0
* Added cmdlet `Get-AzDataBoxEdgeOrder`

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -19,6 +19,7 @@
-->
## Upcoming Release
* Update references in .psd1 to use relative path
## Version 0.1.0
* Added new Powershell cmdlets for AzDataShare
* Added new Powershell cmdlets for AzDataShare

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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
* General availability of `Az.DevTestLabs` module

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -17,4 +17,5 @@
* Overview of change #1
- Additional information about change #1
-->
## Upcoming Release
## Upcoming Release
* Update references in .psd1 to use relative path

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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.

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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.

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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.

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Update references in .psd1 to use relative path
## Version 2.0.0

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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.

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Просмотреть файл

@ -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

Просмотреть файл

@ -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 = @()

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше