-
Notifications
You must be signed in to change notification settings - Fork 415
Expand file tree
/
Copy pathPSScriptAnalyzer.psd1
More file actions
79 lines (58 loc) · 2.3 KB
/
Copy pathPSScriptAnalyzer.psd1
File metadata and controls
79 lines (58 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#
# Module manifest for module 'PSScriptAnalyzer'
#
@{
# Author of this module
Author = 'Microsoft Corporation'
# Script module or binary module file associated with this manifest.
RootModule = if ($PSEdition -eq 'Core')
{
'netcoreapp3.1/Microsoft.PowerShell.ScriptAnalyzer.dll'
}
else
{
'net452/Microsoft.PowerShell.ScriptAnalyzer.dll'
}
# Version number of this module.
ModuleVersion = '2.0.0'
# ID used to uniquely identify this module
GUID = 'd6245802-193d-4068-a631-8863a4342a18'
# Company or vendor of this module
CompanyName = 'Microsoft Corporation'
# Copyright statement for this module
Copyright = '(c) Microsoft Corporation'
# Description of the functionality provided by this module
Description = 'PSScriptAnalyzer is a static analyzer and formatter for PowerShell, checking for potential code defects in the scripts by applying a group of built-in or customized rules to analyzed scripts.'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'
# Minimum version of Microsoft .NET Framework required by this module
DotNetFrameworkVersion = '4.6.1'
# Type files (.ps1xml) to be loaded when importing this module
TypesToProcess = @()
# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = @()
# Functions to export from this module
FunctionsToExport = @()
# Cmdlets to export from this module
CmdletsToExport = @('Get-ScriptAnalyzerRule', 'Invoke-ScriptAnalyzer', 'Write-Diagnostic')
# Variables to export from this module
VariablesToExport = @()
# Aliases to export from this module
AliasesToExport = @()
# Private data to pass to the module specified in RootModule/ModuleToProcess
PrivateData = @{
PSData = @{
Tags = 'lint', 'bestpractice'
LicenseUri = 'https://github.com/PowerShell/PSScriptAnalyzer/blob/master/LICENSE'
ProjectUri = 'https://github.com/PowerShell/PSScriptAnalyzer'
IconUri = 'https://raw.githubusercontent.com/powershell/psscriptanalyzer/master/logo.png'
ReleaseNotes = ''
Prerelease = 'preview.1'
}
}
CompatiblePSEditions = @('Core', 'Desktop')
# HelpInfo URI of this module
# HelpInfoURI = ''
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
}