-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGenericMethods.psd1
38 lines (32 loc) · 2.86 KB
/
GenericMethods.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
37
38
#
# Module manifest for module 'GenericMethods'
#
# Generated by: Dave Wyatt
#
# Generated on: 5/8/2014
#
@{
ModuleToProcess = 'GenericMethods.psm1'
ModuleVersion = '1.0.0.1'
GUID = '3704bfbc-d1c0-4c0f-b64d-cafdc2394afc'
Author = 'Dave Wyatt'
CompanyName = 'Home'
Copyright = 'Copyright 2014 Dave Wyatt.'
Description = 'The Invoke-GenericMethod function allows you to call generic .NET methods whose generic type cannot be inferred from their class or parameters.'
PowerShellVersion = '2.0'
DotNetFrameworkVersion = '2.0'
PrivateData = @{
PSData = @{
# The primary categorization of this module (from the TechNet Gallery tech tree).
Category = 'Scripting Techniques'
# Keyword tags to help users find this module via navigations and search.
Tags = @('powershell','Generic Methods')
# The web address of this module's project or support homepage.
ProjectUri = 'https://github.com/dlwyatt/PSGenericMethods'
# The web address of this module's license. Points to a page that's embeddable and linkable.
LicenseUri = 'http://www.gnu.org/licenses/gpl-2.0.html'
# Indicates this is a pre-release/testing version of the module.
IsPrerelease = 'False'
}
}
}