Releases: nunit/nunit3-vs-adapter
NUnit 3.8 Alpha 1 VS Adapter
This is the first release of the adapter that supports .NET Core and .NET Standard projects in Visual Studio 2017. This is an alpha release to enable NUnit users to begin moving their .NET Core projects from the project.json
format to the new csproj
format.
It is recommended to install the adapter from NuGet if you are testing .NET Core or .NET Standard projects. The VSIX adapter does not, and will not, support .NET Core because VSIX packages cannot target multiple platforms.
Adding this adapter and Microsoft.NET.Test.Sdk
version 15.0.0
to your NUnit test projects will also enable the dotnet test
command for .NET Core projects.
Any tests using the new style CSPROJ format, either .NET Core or .NET 4.x, need to add a PackageReference
to the NuGet package Microsoft.NET.Test.Sdk
. Your test assemblies must also be .NET Core, not .NET Standard, I don't know why.
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
<PackageReference Include="NUnit" Version="3.6.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.8.0-alpha1" />
</ItemGroup>
.NET Core test can be run on the command line with dotnet test
, for example,
> dotnet test .\test\NetCore10Tests\NetCore10Tests.csproj
Also, note that Code Coverage and Live Unit Testing does not work with .NET Core yet. They will be supported in a future version of Visual Studio, likely 15.2.
NUnit 3.7 VS Adapter
This release of the adapter uses the NUnit 3.6 engine. It includes support for Warning test results as well as multiple Assertion failures. A number of bugs are fixed.
NUnit 3.6.1 VS Adapter (Vsix Only)
This hotfix release fixes issue #260 which prevented the vsix from installing under some VS2012 and VS2013 products. It includes only the vsix and the software installed is identical to the 3.6 release. The hotfix is intended for users of VS2012 or VS2013 who have experienced problems. Users who have been able to install the 3.6 vsix without problem, do not need to install this hotfix. Users of the 3.6 nuget package should continue to use it.
NUnit 3.6 Test Adapter
Adds support for Visual Studio "15"
NUnit 3.5.1 Test Adapter
This release fixes some issues in the 3.5 release, including one critical bug.
NUnit 3.5 Test Adapter
This release updates the adapter to use the 3.5 release of the engine and fixes a number of bugs. See the release notes for details.
NUnit 3.4.1 Test Adapter
This release fixes two critical issues and migrates the build to use Cake. See Release Notes for details.
NUnit 3.4 Test Adapter
This release updates the adapter to use the NUnit 3.4.1 Test Engine and fixes a number of outstanding issues. See the release notes for details.
NUnit 3.2 VS Adapter
This release updates the adapter to use the NUnit 3.2.1 test engine and fixes a number of bugs. See the release notes for details.
NUnit 3.0 Test Adapter
This is the final release for NUnit 3.0 Test Adapter, with version number 3.0.10. See release notes in the wiki for details.