-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMultiPing.psd1
More file actions
45 lines (33 loc) · 1.86 KB
/
MultiPing.psd1
File metadata and controls
45 lines (33 loc) · 1.86 KB
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
39
40
41
42
43
44
45
@{
RootModule="MultiPing.psm1"
GUID="488127aa-8772-4319-9a62-31c726c09d1a"
Author="Krisztian Buscsei"
ModuleVersion="1.5"
Description="MultiPing will generate a html based report to help troubleshoot network problems."
RequiredModules = @(@{ModuleName=”UseFulTools”; RequiredVersion="1.2"},@{ModuleName=”Log2Chart”; RequiredVersion="1.2"})
# Private data to pass to the module specified in RootModule/ModuleToProcess
PrivateData = @{
# PSData is module packaging and gallery metadata embedded in PrivateData
# It's for rebuilding PowerShellGet (and PoshCode) NuGet-style packages
# We had to do this because it's the only place we're allowed to extend the manifest
# https://connect.microsoft.com/PowerShell/feedback/details/421837
PSData = @{
# The primary categorization of this module (from the TechNet Gallery tech tree).
#Category = ""
# Keyword tags to help users find this module via navigations and search.
Tags = @("Ping","Log","PowerShell","Chart", "Latency")
# The web address of an icon which can be used in galleries to represent this module
#IconUri = "http://pesterbdd.com/images/Pester.png"
# The web address of this module's project or support homepage.
ProjectUri = "https://github.com/buscseik/MultiPing/"
# The web address of this module's license. Points to a page that's embeddable and linkable.
LicenseUri = "https://github.com/buscseik/MultiPing/blob/master/LICENSE"
# Release notes for this particular version of the module
#ReleaseNotes = $True
# If true, the LicenseUrl points to an end-user license (not just a source license) which requires the user agreement before use.
# RequireLicenseAcceptance = ""
# Indicates this is a pre-release/testing version of the module.
IsPrerelease = 'False'
}
}
}