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
Showing
8 changed files
with
103 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>NUnit.SL50</id> | ||
<title>NUnit Version 3 for SilverLight 5.0</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>NUnit is a unit-testing framework for .Net languages with a strong TDD focus.</summary> | ||
<description>NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. This package includes the NUnit 3.0 framework assembly for SilverLight 5.0, which is referenced by your tests. You will need to install the NUnitLite.SL50 package in order to run the tests.</description> | ||
<language>en-US</language> | ||
<tags>nunit test testing tdd framework fluent assert theory</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\sl-5.0\nunit.framework.dll" target="lib\sl50" /> | ||
<file src="bin\sl-5.0\nunit.framework.xml" target="lib\sl50" /> | ||
</files> | ||
</package> |
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>NUnitLite.SL50</id> | ||
<title>NUnitLite Version 3 for SilverLight 5.0</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>NUnitlite is a lightweight runner for tests that use the NUnit testing framework.</summary> | ||
<description>NUnitLite provides a simple way to run NUnit tests, without the overhead of a full NUnit installation. This package contains a build of the NUnitLite runner for SilverLight 5.0.</description> | ||
<language>en-US</language> | ||
<tags>test unit testing tdd framework fluent assert</tags> | ||
<copyright>Copyright (c) 2015 Charlie Poole</copyright> | ||
<dependencies> | ||
<group> | ||
<dependency id="NUnit.SL50" version="[$version$]" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="LICENSE.txt" /> | ||
<file src="NOTICES.txt" /> | ||
<file src="CHANGES.txt" /> | ||
<file src="bin\sl-5.0\nunitlite.dll" target="lib\sl50" /> | ||
</files> | ||
</package> |
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