Skip to content

Commit 3683deb

Browse files
authored
Enginefix (#1071)
* minor fixes to nuspec and update package for acceptance * Fixes for issues #1065 and #1066 * updated version * removed local feed
1 parent 6501150 commit 3683deb

6 files changed

Lines changed: 15 additions & 6 deletions

File tree

NUnit3TestAdapter.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "netcoreapp3.1", "netcoreapp
6262
nuget\netcoreapp3.1\NUnit3TestAdapter.props = nuget\netcoreapp3.1\NUnit3TestAdapter.props
6363
EndProjectSection
6464
EndProject
65+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "images", "images", "{3D1159FD-FC4D-4750-87EA-F477B3912B3C}"
66+
ProjectSection(SolutionItems) = preProject
67+
images\nunit_256.png = images\nunit_256.png
68+
EndProjectSection
69+
EndProject
6570
Global
6671
GlobalSection(SolutionConfigurationPlatforms) = preSolution
6772
Debug|Any CPU = Debug|Any CPU
@@ -101,6 +106,7 @@ Global
101106
{062B1763-73C8-4B5A-92DF-C66A36C43CE1} = {7CE30108-5D81-4850-BE6B-C8BCA35D3592}
102107
{7D708804-B2F1-4A31-A9FB-85A0C7433200} = {062B1763-73C8-4B5A-92DF-C66A36C43CE1}
103108
{2F940513-5B8F-45A5-A188-7C5D03D1B50D} = {DE347D88-F6ED-4031-AFC2-318F63E39BC9}
109+
{3D1159FD-FC4D-4750-87EA-F477B3912B3C} = {7CE30108-5D81-4850-BE6B-C8BCA35D3592}
104110
EndGlobalSection
105111
GlobalSection(ExtensibilityGlobals) = postSolution
106112
SolutionGuid = {8EF03474-188E-44A8-8C76-9FBCF9A382EC}

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var configuration = Argument("configuration", "Release");
1212
// SET PACKAGE VERSION
1313
//////////////////////////////////////////////////////////////////////
1414

15-
var version = "4.4.0";
15+
var version = "4.4.1";
1616
var modifier = "";
1717

1818

nuget.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<configuration>
33
<packageSources>
44
<clear />
5-
<!--<add key="Local" value="C:\nuget" />-->
65
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
76
<!--<add key="Local" value="c:\nuget" />-->
87
</packageSources>

nuget/NUnit3TestAdapter.nuspec

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@
88
<license type="expression">MIT</license>
99
<projectUrl>https://docs.nunit.org/articles/vs-test-adapter/Index.html</projectUrl>
1010
<repository type="git" url="https://github.com/nunit/nunit3-vs-adapter"/>
11-
<iconUrl>https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png</iconUrl>
11+
<icon>nunit_256.png</icon>
12+
<readme>docs\README.md</readme>
1213
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1314
<summary>NUnit3 adapter for running tests in Visual Studio and DotNet. Works with NUnit 3.x, use the NUnit 2 adapter for 2.x tests.</summary>
1415
<description>
15-
The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core).
16+
The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core), versions .net framework 4.6.2 or higher, .net core 3.1, .net 5 or higher.
1617

1718
Note that this package ONLY contains the adapter, not the NUnit framework.
1819
For VS 2017 and forward, you should add this package to every test project in your solution. (Earlier versions only require a single adapter package per solution.)
@@ -25,6 +26,9 @@
2526
<developmentDependency>false</developmentDependency>
2627
</metadata>
2728
<files>
29+
<file src="..\..\images\nunit_256.png" target="" />
30+
<file src="..\..\README.md" target="docs\" />
31+
2832
<file src="build\net462\NUnit3.TestAdapter.dll" target="build\net462\NUnit3.TestAdapter.dll" />
2933
<file src="build\net462\NUnit3.TestAdapter.pdb" target="build\net462\NUnit3.TestAdapter.pdb" />
3034
<file src="build\net462\nunit.engine.dll" target="build\net462\nunit.engine.dll" />

src/NUnit.TestAdapter.Tests.Acceptance/NUnit.TestAdapter.Tests.Acceptance.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<ItemGroup>
1313
<PackageReference Include="nunit" Version="3.13.3" />
14-
<PackageReference Include="NUnit3TestAdapter" Version="4.4.0-beta.1" />
14+
<PackageReference Include="NUnit3TestAdapter" Version="4.4.0" />
1515
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
1616
<PackageReference Include="NUnit.Analyzers" Version="3.6.0" />
1717
</ItemGroup>

src/NUnitTestAdapter/NUnit.TestAdapter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<ItemGroup>
2626
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.8.3" PrivateAssets="All" />
27-
<PackageReference Include="nunit.engine" Version="3.16.3" />
27+
<PackageReference Include="nunit.engine" Version="3.15.3-net8-3153-1" />
2828
<PackageReference Include="TestCentric.Metadata" Version="1.7.1" Aliases="TestCentric" />
2929
</ItemGroup>
3030

0 commit comments

Comments
 (0)