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.
- Loading branch information
1 parent
604405e
commit 5fa5552
Showing
2 changed files
with
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>NUnit.Engine</id> | ||
<title>NUnit Test Engine</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>The NUnit Test Engine is used by runners to discover and execute tests.</summary> | ||
<description>This package includes nunit.engine and related assemblies, for use by runner programs. It is not intended for direct use by users who simply want to run tests.</description> | ||
<releaseNotes></releaseNotes> | ||
<language>en-US</language> | ||
<tags>nunit test testing tdd engine</tags> | ||
<copyright>Copyright (c) 2015 Charlie Poole</copyright> | ||
</metadata> | ||
<files> | ||
<file src="LICENSE.txt" /> | ||
<file src="NOTICES.txt" /> | ||
<file src="CHANGES.txt" /> | ||
<file src="bin\nunit.engine.dll" target="lib" /> | ||
<file src="bin\nunit.engine.api.dll" target="lib" /> | ||
<file src="bin\Mono.Cecil.dll" target="lib" /> | ||
<file src="bin\nunit-agent.exe" target="lib" /> | ||
<file src="bin\nunit-agent.exe.config" target="lib" /> | ||
<file src="bin\nunit-agent-x86.exe" target="lib" /> | ||
<file src="bin\nunit-agent-x86.exe.config" target="lib" /> | ||
</files> | ||
</package> |