This repository has been archived by the owner on Nov 19, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
NUnitLiteCF.nuspec
28 lines (28 loc) · 2.01 KB
/
NUnitLiteCF.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>NUnitLiteCF</id>
<version>${package.version}${package.suffix}</version>
<authors>Charlie Poole</authors>
<owners>Charlie Poole</owners>
<licenseUrl>http://nunit.org/nuget/nunitlite-license.txt</licenseUrl>
<projectUrl>http://nunitlite.org</projectUrl>
<iconUrl>http://nunit.org/nuget/nunit_32x32.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>NUnitLite is a lightweight testing framework for .NET, based on NUnit.</summary>
<description>NUnitLite provides a subset of the features of NUnit, uses minimal resources and runs on resource-restricted platforms used in embedded and mobile development. This package contains builds of NUnitLite for the .NET Compact Framework. How to use this package: 1. Create a console application for your tests and delete the generated class containing Main(). 2. Install the NUnitLite package, which creates a new Main() as well as adding a reference to NUnitLite. 3. Add your tests to the test project and start the project to execute them.</description>
<copyright>Copyright (c) 2004-2012 Charlie Poole</copyright>
<language>en-US</language>
<tags>test testing tdd framework fluent assert device phone compact embedded</tags>
</metadata>
<files>
<file src="LICENSE.txt" />
<file src="README.txt" />
<file src="CHANGES.txt" />
<file src="package\${package.base.name}\netcf-3.5\nunitlite.dll" target="lib/net35-cf" />
<file src="package\${package.base.name}\netcf-3.5\nunitlite.xml" target="lib/net35-cf" />
<file src="package\${package.base.name}\netcf-2.0\nunitlite.dll" target="lib/net20-cf" />
<file src="package\${package.base.name}\netcf-2.0\nunitlite.xml" target="lib/net20-cf" />
<file src="src\tests\Program.cs" target="content" />
</files>
</package>