forked from nunit/nunit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create new nunit.runners package. Fixes nunit#1030.
- Loading branch information
1 parent
665dddb
commit 566fe5e
Showing
3 changed files
with
45 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>NUnit.Runners</id> | ||
<title>NUnit Console Version 3</title> | ||
<version>$version$</version> | ||
<authors>Charlie Poole</authors> | ||
<owners>Charlie Poole</owners> | ||
<licenseUrl>http://nunit.org/nuget/nunit3-license.txt</licenseUrl> | ||
<projectUrl>http://nunit.org</projectUrl> | ||
<iconUrl>http://nunit.org/nuget/nunitv3_32x32.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<summary>Console runner for version 3.0 of the NUnit unit-testing framework.</summary> | ||
<description>This package is now a reference to the NUnit.Console package, which provides the nunit3-console runner and test engine for version 3.0 of the NUnit unit-testing framework. | ||
|
||
The runner will run 2.6 tests using the included plugin. | ||
|
||
Users may update their projects to use the NUnit.Console package directly if desired.</description> | ||
<releaseNotes>This package no longer contains the gui and pnunit runners, which were in earlier releases. Those runners do not exist for NUnit 3.0 at this time.</releaseNotes> | ||
<language>en-US</language> | ||
<tags>nunit test testing tdd runner</tags> | ||
<copyright>Copyright (c) 2015 Charlie Poole</copyright> | ||
<dependencies> | ||
<group> | ||
<dependency id="NUnit.Console" version="[$version$]" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files></files> | ||
</package> |