Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Mycorp
1.3.1
internal/Get-MtModuleInfo.ps1
<#
.SYNOPSIS
Returns the module details from the psd1 fle.
#>
function
Get-MtModuleInfo
{
param
(
)
Write-Debug
$moduleInfo
|
ConvertTo-Json
-Depth
5
return
$moduleInfo
}