-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,25 @@ | ||
# | ||
# Module manifest for module 'PSLogging' | ||
# | ||
# Generated by: Dave Wyatt | ||
# | ||
# Generated on: 8/3/2013 | ||
# | ||
|
||
@{ | ||
|
||
# Script module or binary module file associated with this manifest. | ||
ModuleToProcess = 'PowerShellLogging.psm1' | ||
|
||
# Version number of this module. | ||
ModuleVersion = '1.3.0' | ||
|
||
# ID used to uniquely identify this module | ||
GUID = '345320b5-bdc3-4ab6-a13e-fcb019362fe6' | ||
|
||
CompanyName = 'Home' | ||
CopyRight = 'Copyright 2017 David Wyatt' | ||
|
||
# Author of this module | ||
Author = 'Dave Wyatt' | ||
|
||
# Description of the functionality provided by this module | ||
Description = 'Captures PowerShell console output to a log file.' | ||
|
||
# Minimum version of the Windows PowerShell engine required by this module | ||
PowerShellVersion = '2.0' | ||
|
||
# Minimum version of the .NET Framework required by this module | ||
DotNetFrameworkVersion = '2.0' | ||
|
||
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess | ||
NestedModules = @('PowerShellLoggingModule.dll') | ||
|
||
# Functions to export from this module | ||
FunctionsToExport = '*' | ||
|
||
# Cmdlets to export from this module | ||
CmdletsToExport = '*' | ||
|
||
# Variables to export from this module | ||
VariablesToExport = '*' | ||
|
||
# Aliases to export from this module | ||
AliasesToExport = '*' | ||
|
||
# List of all modules packaged with this module. | ||
# ModuleList = @() | ||
|
||
# List of all files packaged with this module | ||
FileList = @('PowerShellLogging.psm1','PowerShellLogging.psd1','PowerShellLogginModule.dll','en-US\about_PowerShellLogging.help.txt','en-US\PowerShellLoggingModule.dll-help.xml') | ||
|
||
ModuleToProcess = 'PowerShellLogging.psm1' | ||
ModuleVersion = '1.3.0' | ||
GUID = '345320b5-bdc3-4ab6-a13e-fcb019362fe6' | ||
CompanyName = 'Home' | ||
CopyRight = 'Copyright 2017 David Wyatt' | ||
Author = 'Dave Wyatt' | ||
Description = 'Captures PowerShell console output to a log file.' | ||
PowerShellVersion = '2.0' | ||
DotNetFrameworkVersion = '2.0' | ||
FunctionsToExport = '*' | ||
CmdletsToExport = '*' | ||
VariablesToExport = '*' | ||
AliasesToExport = '*' | ||
|
||
FileList = @('PowerShellLogging.psm1','PowerShellLogging.psd1','PowerShellLoggingModule.dll','en-US\about_PowerShellLogging.help.txt','en-US\PowerShellLoggingModule.dll-help.xml') | ||
|
||
PrivateData = @{ | ||
PSData = @{ | ||
LicenseUri = 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
ProjectUri = 'https://github.com/dlwyatt/PowerShellLoggingModule' | ||
ReleaseNotes = 'Added DateTimeFormat parameter to Enable-LogFile' | ||
} | ||
} | ||
} | ||
|