Skip to content

Commit

Permalink
Enginefix (#1071)
Browse files Browse the repository at this point in the history
* minor fixes to nuspec and update package for acceptance

* Fixes for issues #1065 and #1066

* updated version

* removed local feed
  • Loading branch information
OsirisTerje committed Mar 1, 2023
1 parent 6501150 commit 3683deb
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
6 changes: 6 additions & 0 deletions NUnit3TestAdapter.sln
Expand Up @@ -62,6 +62,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "netcoreapp3.1", "netcoreapp
nuget\netcoreapp3.1\NUnit3TestAdapter.props = nuget\netcoreapp3.1\NUnit3TestAdapter.props
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "images", "images", "{3D1159FD-FC4D-4750-87EA-F477B3912B3C}"
ProjectSection(SolutionItems) = preProject
images\nunit_256.png = images\nunit_256.png
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -101,6 +106,7 @@ Global
{062B1763-73C8-4B5A-92DF-C66A36C43CE1} = {7CE30108-5D81-4850-BE6B-C8BCA35D3592}
{7D708804-B2F1-4A31-A9FB-85A0C7433200} = {062B1763-73C8-4B5A-92DF-C66A36C43CE1}
{2F940513-5B8F-45A5-A188-7C5D03D1B50D} = {DE347D88-F6ED-4031-AFC2-318F63E39BC9}
{3D1159FD-FC4D-4750-87EA-F477B3912B3C} = {7CE30108-5D81-4850-BE6B-C8BCA35D3592}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8EF03474-188E-44A8-8C76-9FBCF9A382EC}
Expand Down
2 changes: 1 addition & 1 deletion build.cake
Expand Up @@ -12,7 +12,7 @@ var configuration = Argument("configuration", "Release");
// SET PACKAGE VERSION
//////////////////////////////////////////////////////////////////////

var version = "4.4.0";
var version = "4.4.1";
var modifier = "";


Expand Down
1 change: 0 additions & 1 deletion nuget.config
Expand Up @@ -2,7 +2,6 @@
<configuration>
<packageSources>
<clear />
<!--<add key="Local" value="C:\nuget" />-->
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
<!--<add key="Local" value="c:\nuget" />-->
</packageSources>
Expand Down
8 changes: 6 additions & 2 deletions nuget/NUnit3TestAdapter.nuspec
Expand Up @@ -8,11 +8,12 @@
<license type="expression">MIT</license>
<projectUrl>https://docs.nunit.org/articles/vs-test-adapter/Index.html</projectUrl>
<repository type="git" url="https://github.com/nunit/nunit3-vs-adapter"/>
<iconUrl>https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png</iconUrl>
<icon>nunit_256.png</icon>
<readme>docs\README.md</readme>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<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>
<description>
The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core).
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.

Note that this package ONLY contains the adapter, not the NUnit framework.
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.)
Expand All @@ -25,6 +26,9 @@
<developmentDependency>false</developmentDependency>
</metadata>
<files>
<file src="..\..\images\nunit_256.png" target="" />
<file src="..\..\README.md" target="docs\" />

<file src="build\net462\NUnit3.TestAdapter.dll" target="build\net462\NUnit3.TestAdapter.dll" />
<file src="build\net462\NUnit3.TestAdapter.pdb" target="build\net462\NUnit3.TestAdapter.pdb" />
<file src="build\net462\nunit.engine.dll" target="build\net462\nunit.engine.dll" />
Expand Down
Expand Up @@ -11,7 +11,7 @@

<ItemGroup>
<PackageReference Include="nunit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.0-beta.1" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="NUnit.Analyzers" Version="3.6.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/NUnitTestAdapter/NUnit.TestAdapter.csproj
Expand Up @@ -24,7 +24,7 @@

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

Expand Down

0 comments on commit 3683deb

Please sign in to comment.