PowerShell/test/tools/Modules/HttpListener/HttpListener.psd1
Steve Lee 4bc52d2358 Use consistent '(c)' for copyright symbol (#5210)
- Remove the year about copyright
- Fix casing of `All rights reserved`
- Replace Unicode characters representing single quote with a single quote
2017-10-26 14:12:19 -07:00

11 lines
356 B
PowerShell

@{
ModuleVersion = '1.0.0'
GUID = 'e148b26c-0594-4963-99e5-419d4ff302e2'
Author = 'Steve Lee'
CompanyName = 'Microsoft'
Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.'
Description = 'Creates a new HTTP Listener for testing purposes'
RootModule = 'HttpListener.psm1'
FunctionsToExport = @('Start-HttpListener','Stop-HttpListener')
}