WifiTools.psd1
@{ RootModule="WifiTools.psm1" GUID="488127aa-8772-4319-9a62-31c726c09d1a" Author="Krisztian Buscsei" ModuleVersion="1.8" Description="A set of tools that can simplify handle Wi-Fi profiles, connection. Also additional tools that closely related to networking and Wi-Fi." # 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 = "" RequiredAssemblies = @('ManagedWifi.dll', 'WIFI-WPS.exe', 'Windows.winmd', 'System.Runtime.WindowsRuntime.dll') # Keyword tags to help users find this module via navigations and search. Tags = @("PowerShell", "WiFi") # 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/WifiTools/" # The web address of this module's license. Points to a page that's embeddable and linkable. LicenseUri = "https://github.com/buscseik/WifiTools/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' } } } |