-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathnunit.analyzers.nuspec
34 lines (33 loc) · 2.17 KB
/
nunit.analyzers.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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>NUnit.Analyzers</id>
<version>$version$</version>
<title>NUnit Analyzers</title>
<authors>NUnit</authors>
<license type="expression">MIT</license>
<iconUrl>https://raw.githubusercontent.com/nunit/resources/master/images/icon/nunit_256.png</iconUrl>
<icon>images\nunit_256.png</icon>
<projectUrl>https://github.com/nunit/nunit.analyzers</projectUrl>
<repository type="git" url="https://github.com/nunit/nunit.analyzers"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<developmentDependency>true</developmentDependency>
<summary>Code analyzers and fixes for NUnit 3+</summary>
<readme>docs/README.md</readme>
<description>
This package includes analyzers and code fixes for test projects using NUnit 3+. The analyzers will mark wrong usages when writing tests, and the code fixes can be used to used to correct these usages. They will also aid in the transition from NUnit 3 to NUnit 4.
Version 3.0 and upwards works in Visual Studio 2019 (version 16.3) or newer and also enables supression of compiler errors such as errors arising from nullable reference types. For Visual Studio 2017 one must use versions below 3.0 - note that these versions are no longer updated, so version 2.10.0 is the last version that works in Visual Studio 2017.
</description>
<releaseNotes>See the release notes on https://github.com/nunit/nunit.analyzers/blob/master/CHANGES.md.</releaseNotes>
<copyright>Copyright (c) 2018-2025 NUnit project</copyright>
<tags>nunit, analyzers, roslyn-analyzers</tags>
</metadata>
<!-- The convention for analyzers is to put language agnostic dlls in analyzers\portable50 and language specific analyzers in either analyzers\portable50\cs or analyzers\portable50\vb -->
<files>
<file src="bin\$Configuration$\$TargetFramework$\nunit.analyzers.dll" target="analyzers\dotnet\cs\" />
<file src="tools\*.ps1" target="tools\" />
<file src="..\..\license.txt" target="" />
<file src="..\..\nunit_256.png" target="images" />
<file src="..\..\README.md" target="docs" />
</files>
</package>