|
| 1 | +<?xml version="1.0"?> |
| 2 | +<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> |
| 3 | + <metadata> |
| 4 | + <id>CitizenMatt.Xunit</id> |
| 5 | + <title>xUnit.net Test Support for ReSharper 9</title> |
| 6 | + <version>2.1.6</version> |
| 7 | + <authors>Matt Ellis</authors> |
| 8 | + <owners>Matt Ellis</owners> |
| 9 | + <description>A unit test provider for xUnit.net. Discovers and runs xUnit.net 1.x and 2.0 tests. Includes annotations to aid ReSharper inspections and Live Templates to speed up inserting test methods and asserts.</description> |
| 10 | + <summary>A unit test provider for xUnit.net</summary> |
| 11 | + <releaseNotes>Support for xunit 2.0 |
| 12 | +• Support for ReSharper 9.1 |
| 13 | +• Rewritten the core runner to be more robust with multi-threading. Should fix issues with aborted or inconclusive tests (#44, #31) |
| 14 | +• Updated external annotations for xunit 2.0 (#30) |
| 15 | +• Read xunit 2.0 settings from config file (#40) |
| 16 | +• Added logging for ReSharper 9 in internal mode |
| 17 | + |
| 18 | +From previous builds: |
| 19 | +• Report diagnostic messages when 'xunit.diagnosticMessages' is set in config (#28) |
| 20 | +• Report mismatched pre-release versions on failure (#23) |
| 21 | +• Fixed crash working with xUnit.net 1.1 |
| 22 | +• Fixed an issue (#9) to run individual methods, rather than all methods in the class |
| 23 | +• Fixed an issue (#21) with Unicode characters in display names and data attributes |
| 24 | +• Captures output from ITestOutputHelper |
| 25 | +• Shadow copy cache clean up on abort |
| 26 | +• Parallelisation re-enabled! |
| 27 | + |
| 28 | +Known issues: |
| 29 | +• Live Templates for Theory use xunit1 namespace</releaseNotes> |
| 30 | + <projectUrl>https://github.com/xunit/resharper-xunit</projectUrl> |
| 31 | + <licenseUrl>https://raw.githubusercontent.com/xunit/resharper-xunit/xunit2/license.txt</licenseUrl> |
| 32 | + <iconUrl>https://raw.githubusercontent.com/xunit/media/master/logo-512-transparent.png</iconUrl> |
| 33 | + <copyright>Copyright 2014 Matt Ellis</copyright> |
| 34 | + <requireLicenseAcceptance>false</requireLicenseAcceptance> |
| 35 | + <dependencies> |
| 36 | + <dependency id="Wave" version="[2.0]" /> |
| 37 | + </dependencies> |
| 38 | + <tags>resharper unittest xunit</tags> |
| 39 | + </metadata> |
| 40 | + <files> |
| 41 | + <!-- Plugin --> |
| 42 | + <file src="..\src\provider\bin\rs91\Release\xunitcontrib.runner.resharper.provider.9.1.dll" |
| 43 | + target="DotFiles" /> |
| 44 | + <file src="..\src\provider\bin\rs91\Release\xunitcontrib.runner.resharper.runner.9.1.dll" |
| 45 | + target="DotFiles" /> |
| 46 | + <file src="..\src\provider\bin\rs91\Release\xunit.dll" |
| 47 | + target="DotFiles" /> |
| 48 | + <file src="..\src\provider\bin\rs91\Release\xunit.abstractions.dll" |
| 49 | + target="DotFiles" /> |
| 50 | + <file src="..\src\provider\bin\rs91\Release\xunit.runner.utility.desktop.dll" |
| 51 | + target="DotFiles" /> |
| 52 | + |
| 53 | + <!-- Settings and annotations --> |
| 54 | + <file src="..\src\provider\templates.dotSettings" |
| 55 | + target="DotFiles\Extensions\CitizenMatt.Xunit\settings\templates.dotSettings" /> |
| 56 | + <file src="..\ExternalAnnotations\xunit.xml" |
| 57 | + target="DotFiles\Extensions\CitizenMatt.Xunit\annotations\xunit.xml" /> |
| 58 | + <file src="..\ExternalAnnotations\xunit.assert.xml" |
| 59 | + target="DotFiles\Extensions\CitizenMatt.Xunit\annotations\xunit.assert.xml" /> |
| 60 | + <file src="..\ExternalAnnotations\xunit.core.xml" |
| 61 | + target="DotFiles\Extensions\CitizenMatt.Xunit\annotations\xunit.core.xml" /> |
| 62 | + </files> |
| 63 | +</package> |
0 commit comments