-
Notifications
You must be signed in to change notification settings - Fork 736
/
Copy pathnunit.nuspec
71 lines (68 loc) · 4.44 KB
/
nunit.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="2.12">
<id>NUnit</id>
<title>NUnit</title>
<version>$version$</version>
<authors>Charlie Poole, Rob Prouse</authors>
<owners>Charlie Poole, Rob Prouse</owners>
<license type="expression">MIT</license>
<projectUrl>https://nunit.org</projectUrl>
<repository type="git" url="https://github.com/nunit/nunit"/>
<icon>icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<readme>README.md</readme>
<summary>NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.</summary>
<description>
NUnit is a unit-testing framework for all .NET languages.
It can run on macOS, Linux and Windows operating systems.
NUnit can be used for a wide range of testing, from unit testing with TDD to full-fledged system and integration testing.
It is a non-opinionated, broad and deep framework with multiple different ways to assert that your code behaves as expected. Many aspects of NUnit can be extended to suit your specific purposes.
The latest version, version 4, is an upgrade from the groundbreaking NUnit 3 framework. It is a modernized version, aimed at taking advantage of the latest .NET features and C# language constructs.
If you are upgrading from NUnit 3, be aware of the breaking changes (https://docs.nunit.org/articles/nunit/release-notes/breaking-changes.html#nunit-40). Please see the NUnit 4 Migration Guide (https://docs.nunit.org/articles/nunit/release-notes/Nunit4.0-MigrationGuide.html) and take care to prepare your NUnit 3 code before you do the upgrade.
Supported platforms:
- .NET Framework 4.6.2+
- .NET 6.0+
- .NET 8.0+
</description>
<releaseNotes>See release notes at https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-430----dec-15-2024</releaseNotes>
<language>en-US</language>
<tags>nunit test testing tdd framework fluent assert theory plugin addin</tags>
<copyright>Copyright (c) Charlie Poole, Rob Prouse and Contributors. MIT License.</copyright>
<dependencies>
<group targetFramework="net462">
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" exclude="Build,Analyzers" />
<dependency id="System.ValueTuple" version="4.5.0" exclude="Build,Analyzers" />
<dependency id="System.Memory" version="4.6.0" exclude="Build,Analyzers" />
</group>
<group targetFramework="net6.0" />
<group targetFramework="net8.0" />
</dependencies>
</metadata>
<files>
<file src="LICENSE.txt" />
<file src="NOTICES.md" />
<file src="README.md" />
<file src="THIRD_PARTY_NOTICES.md" />
<file src="..\..\nuget\icon.png" />
<file src="bin/net462/nunit.framework.dll" target="lib\net462" />
<file src="bin/net462/nunit.framework.xml" target="lib\net462" />
<file src="bin/net462/nunit.framework.pdb" target="lib\net462" />
<file src="bin/net462/nunit.framework.legacy.dll" target="lib\net462" />
<file src="bin/net462/nunit.framework.legacy.xml" target="lib\net462" />
<file src="bin/net462/nunit.framework.legacy.pdb" target="lib\net462" />
<file src="bin/net6.0/nunit.framework.dll" target="lib\net6.0" />
<file src="bin/net6.0/nunit.framework.xml" target="lib\net6.0" />
<file src="bin/net6.0/nunit.framework.pdb" target="lib\net6.0" />
<file src="bin/net6.0/nunit.framework.legacy.dll" target="lib\net6.0" />
<file src="bin/net6.0/nunit.framework.legacy.xml" target="lib\net6.0" />
<file src="bin/net6.0/nunit.framework.legacy.pdb" target="lib\net6.0" />
<file src="bin/net8.0/nunit.framework.dll" target="lib\net8.0" />
<file src="bin/net8.0/nunit.framework.xml" target="lib\net8.0" />
<file src="bin/net8.0/nunit.framework.pdb" target="lib\net8.0" />
<file src="bin/net8.0/nunit.framework.legacy.dll" target="lib\net8.0" />
<file src="bin/net8.0/nunit.framework.legacy.pdb" target="lib\net8.0" />
<file src="bin/net8.0/nunit.framework.legacy.xml" target="lib\net8.0" />
<file src="..\..\nuget\framework\NUnit.props" target="build" />
</files>
</package>