PowerShell/test/tools/OpenCover/OpenCover.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

18 lines
687 B
PowerShell

@{
RootModule = 'OpenCover.psm1'
ModuleVersion = '1.1.0.0'
GUID = '4eedcffd-26e8-4172-8aad-9b882c13d370'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.'
Description = 'Module to install OpenCover and run Powershell tests to collect code coverage'
DotNetFrameworkVersion = 4.5
TypesToProcess = @('OpenCover.Types.ps1xml')
FormatsToProcess = @('OpenCover.Format.ps1xml')
FunctionsToExport = @('Get-CodeCoverage','Compare-CodeCoverage', 'Compare-FileCoverage', 'Install-OpenCover', 'Invoke-OpenCover','Format-FileCoverage')
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
}