Log2Chart.psd1

@{
RootModule="Log2Chart.psm1"
GUID="488127aa-8772-4319-9a62-31c726c09d1a"
Author="Krisztian Buscsei"
ModuleVersion="1.2"
Description="This module give tools to generate html based graphs from iperf or ping logs."

# 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 = "This module give tools to generate html based graphs from iperf or ping logs."

        # Keyword tags to help users find this module via navigations and search.
        Tags = @("Ping","Log","PowerShell","Chart")

        # 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/log2chart/"

        # The web address of this module's license. Points to a page that's embeddable and linkable.
        LicenseUri = "https://github.com/buscseik/log2chart/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'
    }
}

}