This repository has been archived by the owner on Nov 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>OpenCover</id> | ||
<version>1.0.0.0</version> | ||
<title>OpenCover - an open source code coverage tool for .NET</title> | ||
<authors>sawilde</authors> | ||
<owners>sawilde</owners> | ||
<licenseUrl>https://github.com/opencover/opencover/blob/master/License.md</licenseUrl> | ||
<iconUrl>https://github.com/opencover/opencover/blob/master/main/Icons/128.png?raw=true</iconUrl> | ||
<projectUrl>https://github.com/opencover/opencover</projectUrl> | ||
<!-- | ||
<projectSourceUrl>https://github.com/OpenCover/opencover</projectSourceUrl> | ||
<docsUrl>https://github.com/OpenCover/opencover/wiki</docsUrl> | ||
<bugTrackerUrl>https://github.com/OpenCover/opencover/issues</bugTrackerUrl> | ||
<packageSourceUrl>https://github.com/OpenCover/OpenCover/main/OpenCover.ChocolateyPackage</packageSourceUrl> | ||
--> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>An open source code coverage tool (branch and sequence point) for all .NET Frameworks 2 and above (including Silverlight). Also capable of handling 32 and 64 bit processes. Use ReportGenerator 1.9 for best viewing results (also available via Nuget).</description> | ||
<summary>An open source code coverage tool (branch and sequence point) for all .NET Frameworks 2 and above. Also capable of handling 32 and 64 bit processes.</summary> | ||
<language>en-US</language> | ||
<tags>Code-Coverage Reporting Testing TDD Utility</tags> | ||
</metadata> | ||
<files> | ||
<file src="tools\chocolateyInstall.ps1" target="tools" /> | ||
</files> | ||
</package> |
5 changes: 5 additions & 0 deletions
5
main/OpenCover.ChocolateyPackage/tools/chocolateyInstall.ps1.tmp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$packageName = 'opencover' | ||
$installerType = 'msi' | ||
$silentArgs= '/quiet' | ||
$url = 'https://github.com/OpenCover/opencover/releases/download/[[version]]/opencover.[[version]].msi' | ||
Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" -validExitCodes @(0) |