-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathPSPublishModule.psd1
36 lines (36 loc) · 2.59 KB
/
PSPublishModule.psd1
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
@{
AliasesToExport = @('New-PrepareModule', 'Build-Module', 'Invoke-ModuleBuilder')
Author = 'Przemyslaw Klys'
CmdletsToExport = @()
CompanyName = 'Evotec'
CompatiblePSEditions = @('Desktop', 'Core')
Copyright = '(c) 2011 - 2024 Przemyslaw Klys @ Evotec. All rights reserved.'
Description = 'Simple project allowing preparing, managing, building and publishing modules to PowerShellGallery'
DotNetFrameworkVersion = '4.5.2'
FunctionsToExport = @('Convert-CommandsToList', 'Get-MissingFunctions', 'Get-PowerShellAssemblyMetadata', 'Initialize-PortableModule', 'Initialize-PortableScript', 'Initialize-ProjectManager', 'Invoke-ModuleBuild', 'New-ConfigurationArtefact', 'New-ConfigurationBuild', 'New-ConfigurationCommand', 'New-ConfigurationDocumentation', 'New-ConfigurationExecute', 'New-ConfigurationFormat', 'New-ConfigurationImportModule', 'New-ConfigurationInformation', 'New-ConfigurationManifest', 'New-ConfigurationModule', 'New-ConfigurationModuleSkip', 'New-ConfigurationPlaceHolder', 'New-ConfigurationPublish', 'New-ConfigurationTest', 'Register-Certificate', 'Remove-Comments', 'Send-GitHubRelease', 'Test-BasicModule', 'Test-ScriptFile', 'Test-ScriptModule')
GUID = 'eb76426a-1992-40a5-82cd-6480f883ef4d'
ModuleVersion = '2.0.17'
PowerShellVersion = '5.1'
PrivateData = @{
PSData = @{
ExternalModuleDependencies = @('Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.Archive', 'Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Security')
IconUri = 'https://evotec.xyz/wp-content/uploads/2019/02/PSPublishModule.png'
ProjectUri = 'https://github.com/EvotecIT/PSPublishModule'
Tags = @('Windows', 'MacOS', 'Linux', 'Build', 'Module')
}
}
RequiredModules = @(@{
Guid = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
ModuleName = 'powershellget'
ModuleVersion = '2.2.5'
}, @{
Guid = 'd6245802-193d-4068-a631-8863a4342a18'
ModuleName = 'PSScriptAnalyzer'
ModuleVersion = '1.22.0'
}, @{
Guid = 'a699dea5-2c73-4616-a270-1f7abb777e71'
ModuleName = 'Pester'
ModuleVersion = '5.6.1'
}, 'Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.Archive', 'Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Security')
RootModule = 'PSPublishModule.psm1'
}