Information.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'Information.psm1' # Version number of this module. ModuleVersion = '0.5.1' # ID used to uniquely identify this module GUID = '775a34c4-0c58-4836-9176-25fd2dc31f64' # Author of this module Author = 'Joel "Jaykul" Bennett' # Company or vendor of this module CompanyName = 'HuddledMasses.org' # Copyright statement for this module Copyright = '(c) 2017 Joel Bennett. All rights reserved.' # Description of the functionality provided by this module Description = 'Improves on Write-Information and provides new scenarios for the Information stream' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.0' # 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, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @('Get-InfoTemplate','Set-InfoTemplate','Trace-Info','Write-ErrorInfo','Write-Info') # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() # Variables to export from this module VariablesToExport = @( 'DebugFilterExclude' 'DebugFilterInclude' ) # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @() # List of all files packaged with this module FileList = @('.\Information.csproj','.\Information.psd1','.\Information.psm1','.\InformationMessage.cs','.\en-US\about_Information.help.txt','.\Examples\Controller.ps1','.\Examples\SimpleExample.ps1','.\Examples\StartTimeExample.ps1','.\Examples\TraceException.ps1','.\Examples\TraceModule.ps1','.\Examples\TraceRemote.ps1','.\Examples\Work.ps1','.\obj\Information.csproj.nuget.cache','.\obj\Information.csproj.nuget.g.props','.\obj\Information.csproj.nuget.g.targets','.\obj\project.assets.json','.\obj\Debug\net45\.NETFramework,Version=v4.5.AssemblyAttributes.cs','.\obj\Debug\net45\Information.AssemblyInfo.cs','.\obj\Debug\net45\Information.AssemblyInfoInputs.cache','.\obj\Debug\net45\Information.assets.cache','.\obj\Debug\net45\Information.csproj.CoreCompileInputs.cache','.\obj\Debug\net45\Information.csprojAssemblyReference.cache','.\obj\Debug\net45\Information.csprojResolveAssemblyReference.cache','.\obj\Debug\net45\project.razor.json','.\obj\Debug\net45\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs','.\obj\Debug\net45\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs','.\obj\Debug\net45\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs') # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ PreRelease = "beta" # Tags applied to this module. These help with module discovery in online galleries. # Tags = @() # A URL to the license for this module. # LicenseUri = '' # A URL to the main website for this project. # ProjectUri = '' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module ReleaseNotes = ' 0.5.0 Added a Deserializer to Information.InformationMessage so that remote Information.InformationMessage can be rendered with the local InformationTemplate This means that we no longer need to pass the StartTime or the InfoTemplate to remote computers. Updated samples accordingly 0.4.0 Major refactor, rename existing functions to create a new, consistent sent of nouns Add Trace-Info to wrap calls to functions and alias Write-Host 0.3.0 Added a Deserializer for DataTimeOffset so that we can pass the "StartTime" to remote computers for consistent "elpsed" time. ' } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |