Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 657 Bytes

AvoidUsingDeprecatedManifestFields.md

File metadata and controls

37 lines (24 loc) · 657 Bytes
description ms.date ms.topic title
Avoid Using Deprecated Manifest Fields
06/28/2023
reference
AvoidUsingDeprecatedManifestFields

AvoidUsingDeprecatedManifestFields

Severity Level: Warning

Description

In PowerShell 5.0, a number of fields in module manifest files (.psd1) have been changed.

The field ModuleToProcess has been replaced with the RootModule field.

How

Replace ModuleToProcess with RootModule in the module manifest.

Example

Wrong

ModuleToProcess ='psscriptanalyzer'

ModuleVersion = '1.0'

Correct

RootModule ='psscriptanalyzer'

ModuleVersion = '1.0'