Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore - add specific module versions for required modules #73

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PowerShellVersion = '5.1'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName="Az.ApiManagement"; ModuleVersion="2.0.0"})
RequiredModules = @(@{ModuleName='Az.ApiManagement'; ModuleVersion='2.0.0'})

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
Expand Down
10 changes: 4 additions & 6 deletions src/Arcus.Scripting.DataFactory/Arcus.Scripting.DataFactory.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PowerShellVersion = '5.1'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @('Az.DataFactory')
RequiredModules = @(@{ModuleName='Az.DataFactory'; ModuleVersion='1.9.0'})

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
Expand Down Expand Up @@ -88,11 +88,10 @@ PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'Azure', 'Data', 'Data Factory', 'Arcus'


# A URL to the license for this module.
# A URL to the license for this module.
LicenseUri = 'https://github.com/arcus-azure/arcus.scripting/blob/master/LICENSE'

# A URL to the main website for this project.
Expand All @@ -117,12 +116,11 @@ PrivateData = @{

} # End of PrivateData hashtable



# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}

2 changes: 1 addition & 1 deletion src/Arcus.Scripting.KeyVault/Arcus.Scripting.KeyVault.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PowerShellVersion = '5.1'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @('Az.KeyVault')
RequiredModules = @(@{ModuleName='Az.KeyVault'; ModuleVersion='2.0.0'})

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
Expand Down
7 changes: 3 additions & 4 deletions src/Arcus.Scripting.Storage/Arcus.Scripting.Storage.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PowerShellVersion = '5.1'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @('Az.Storage')
RequiredModules = @(@{ModuleName='Az.Storage'; ModuleVersion='2.3.0'})

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
Expand Down Expand Up @@ -88,7 +88,7 @@ PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'Azure', 'Storage', 'Data', 'Table Storage', 'Arcus'

# A URL to the license for this module.
Expand Down Expand Up @@ -116,12 +116,11 @@ PrivateData = @{

} # End of PrivateData hashtable



# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}