Skip to content
This repository was archived by the owner on Dec 12, 2017. It is now read-only.

Commit a8fed67

Browse files
committed
Preparing release for 2.1.6
Resolves #45, #44, #32, #43, #41, #30
1 parent 893d91c commit a8fed67

File tree

3 files changed

+74
-14
lines changed

3 files changed

+74
-14
lines changed

resharper/nuget/pack-rs91.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nuget pack xunitcontrib-rs91.nuspec
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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+
&#8226; Support for ReSharper 9.1
13+
&#8226; Rewritten the core runner to be more robust with multi-threading. Should fix issues with aborted or inconclusive tests (#44, #31)
14+
&#8226; Updated external annotations for xunit 2.0 (#30)
15+
&#8226; Read xunit 2.0 settings from config file (#40)
16+
&#8226; Added logging for ReSharper 9 in internal mode
17+
18+
From previous builds:
19+
&#8226; Report diagnostic messages when 'xunit.diagnosticMessages' is set in config (#28)
20+
&#8226; Report mismatched pre-release versions on failure (#23)
21+
&#8226; Fixed crash working with xUnit.net 1.1
22+
&#8226; Fixed an issue (#9) to run individual methods, rather than all methods in the class
23+
&#8226; Fixed an issue (#21) with Unicode characters in display names and data attributes
24+
&#8226; Captures output from ITestOutputHelper
25+
&#8226; Shadow copy cache clean up on abort
26+
&#8226; Parallelisation re-enabled!
27+
28+
Known issues:
29+
&#8226; 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>

resharper/nuget/xunitcontrib.nuspec

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,28 @@
33
<metadata>
44
<id>xunitcontrib</id>
55
<title>xUnit.net Test Support</title>
6-
<version>2.0.5</version>
6+
<version>2.1.6</version>
77
<authors>Matt Ellis</authors>
88
<owners>Matt Ellis</owners>
99
<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>
1010
<summary>A unit test provider for xUnit.net</summary>
1111
<releaseNotes>Support for xunit 2.0
12-
13-
From 2.0.4:
14-
&#8226; Support for RC4 (build 2924)
15-
16-
From 2.0.3:
17-
&#8226; Support for RC3 (build 2880)
18-
&#8226; Support for xunit's appSettings config
19-
&#8226; Report diagnostic messages when 'xunit.diagnosticMessages' is set in config (#28)
12+
&#8226; Rewritten the core runner to be more robust with multi-threading. Should fix issues with aborted or inconclusive tests (#44, #31)
13+
&#8226; Updated external annotations for xunit 2.0 (#30)
14+
&#8226; Read xunit 2.0 settings from config file (#40)
2015

2116
From previous builds:
22-
&#8226; Support for RC1 (build 2826)
17+
&#8226; Report diagnostic messages when 'xunit.diagnosticMessages' is set in config (#28)
2318
&#8226; Report mismatched pre-release versions on failure (#23)
2419
&#8226; Fixed crash working with xUnit.net 1.1
2520
&#8226; Fixed an issue (#9) to run individual methods, rather than all methods in the class
2621
&#8226; Fixed an issue (#21) with Unicode characters in display names and data attributes
27-
&#8226; Beta 5 support (build 2785)
2822
&#8226; Captures output from ITestOutputHelper
2923
&#8226; Shadow copy cache clean up on abort
3024
&#8226; Parallelisation re-enabled!
3125

3226
Known issues:
33-
&#8226; REQUIRES xunit 2.0 RTM. Will NOT run earlier pre-release versions
34-
&#8226; External annotations not yet implemented for xunit2 (to be fixed)
35-
&#8226; Live Templates for Theory use xunit1 namespace (to be fixed)</releaseNotes>
27+
&#8226; Live Templates for Theory use xunit1 namespace</releaseNotes>
3628
<projectUrl>https://github.com/xunit/resharper-xunit</projectUrl>
3729
<licenseUrl>https://raw.githubusercontent.com/xunit/resharper-xunit/xunit2/license.txt</licenseUrl>
3830
<iconUrl>https://raw.githubusercontent.com/xunit/media/master/logo-512-transparent.png</iconUrl>
@@ -61,5 +53,9 @@ Known issues:
6153
target="ReSharper\vAny\settings" />
6254
<file src="..\ExternalAnnotations\xunit.xml"
6355
target="ReSharper\vAny\annotations" />
56+
<file src="..\ExternalAnnotations\xunit.assert.xml"
57+
target="ReSharper\vAny\annotations" />
58+
<file src="..\ExternalAnnotations\xunit.core.xml"
59+
target="ReSharper\vAny\annotations" />
6460
</files>
6561
</package>

0 commit comments

Comments
 (0)