Skip to content

Update module infomation #13328

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

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 @@ -10,16 +10,19 @@
</PropertyGroup>

<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>

<PropertyGroup>
<PackageId>Az.Tools.Predictor</PackageId>
<Version>0.1.0-preview</Version>
<Author>Microsoft Corporation</Author>
<Version>0.1.0</Version>
<Authors>Microsoft Corporation</Authors>
<Company>Microsoft Corporation</Company>
<Description>Microsoft Azure PowerShell Predictor: Provide prediction while user types Azure PowerShell commands</Description>
<Copyright>Microsoft Corporation. All rights reserved.</Copyright>
<Description>Microsoft Azure PowerShell - Module providing recommendations to PSReadLine v2.2.0 or above for cmdlets comprised in the Az module - This module is compatible with PowerShell 7.1 or above.

For more information on Az Predictor, please visit the following: https://aka.ms/azpredictordocs</Description>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@ CompanyName = 'Microsoft Corporation'
Copyright = 'Microsoft Corporation. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Microsoft Azure PowerShell Predictor: Provide prediction while user types Azure PowerShell commands'
Description = 'Microsoft Azure PowerShell - Module providing recommendations to PSReadLine v2.2.0 or above for cmdlets comprised in the Az module - This module is compatible with PowerShell 7.1 or above.

For more information on Az Predictor, please visit the following: https://aka.ms/azpredictordocs'

# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '7.1'

# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()
# RequiredModules = @(@{ModuleName="PSReadLine"; ModuleVersion="2.2.0-beta1"})

NestedModules = @("Microsoft.Azure.PowerShell.Tools.AzPredictor.dll")

Expand All @@ -47,7 +49,7 @@ PrivateData = @{
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'Azure','Prediction'
Tags = 'Azure','PowerShell','Prediction'

# A URL to the license for this module.
LicenseUri = 'https://aka.ms/azps-license'
Expand All @@ -59,7 +61,7 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* the first preview release'
ReleaseNotes = '* first preview release'

# Prerelease string of this module
# Prerelease = ''
Expand All @@ -68,7 +70,7 @@ PrivateData = @{
# RequireLicenseAcceptance = $false

# External dependent modules of this module
ExternalModuleDependencies = @('Az')
ExternalModuleDependencies = @('Az', 'PSReadLine')

} # End of PSData hashtable

Expand Down