xunit.v3.extensibility.core 2.0.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package xunit.v3.extensibility.core --version 2.0.0
                    
NuGet\Install-Package xunit.v3.extensibility.core -Version 2.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="xunit.v3.extensibility.core" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="xunit.v3.extensibility.core" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="xunit.v3.extensibility.core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add xunit.v3.extensibility.core --version 2.0.0
                    
#r "nuget: xunit.v3.extensibility.core, 2.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=xunit.v3.extensibility.core&version=2.0.0
                    
Install xunit.v3.extensibility.core as a Cake Addin
#tool nuget:?package=xunit.v3.extensibility.core&version=2.0.0
                    
Install xunit.v3.extensibility.core as a Cake Tool

xUnit.net v3 [Core Unit Testing Framework Extensibility]

Includes the core library (xunit.v3.core.dll), to be used for extensibility; test authors should include xunit.v3.core instead. Supports .NET Standard 2.0.

About xUnit.net

<img align="right" width="100px" src="https://raw.githubusercontent.com/xunit/media/main/dotnet-foundation.svg" />

xUnit.net is a free, open source, community-focused unit testing tool for the .NET Framework. Written by the original inventor of NUnit v2, xUnit.net is the latest technology for unit testing C# and F# (other .NET languages may work as well, but are unsupported). xUnit.net works with Visual Studio, Visual Studio Code, ReSharper, CodeRush, and TestDriven.NET. It is part of the .NET Foundation, and operates under their code of conduct. It is licensed under Apache 2 (an OSI approved license).

For project documentation, please visit the xUnit.net project home.

Powered by NDepend

Latest Builds

Stable Latest CI (how to use) Build status
v3 core framework alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image
v2 core framework alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image
xunit.analyzers alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image
xunit.runner.visualstudio alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

For complete CI package lists, please visit the feedz.io package search. A free login is required.

Sponsors

Special thanks to the .NET on AWS Open Source Software Fund for sponsoring the ongoing development of xUnit.net.

<img src="https://xunit.net/images/aws-logo.svg" style="padding: 10px 0; width: 200px" />

Help support this project by becoming a sponsor through GitHub Sponsors.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (36)

Showing the top 5 NuGet packages that depend on xunit.v3.extensibility.core:

Package Downloads
Xunit.DependencyInjection

Use Microsoft.Extensions.DependencyInjection to inject xunit testclass. If you want write Microsoft.Extensions.Logging to ITestOutputHelper, please install Xunit.DependencyInjection.Logging. Release notes: 10.4: Fix #146. 10.3: Update xunit.v3 to 2.0.0. 10.2: Fix some parallelization problem. 10.1: Allow the default startup to be missing anywhere. 10.0: Upgrade xunit to v3.

Xunit.Combinatorial

Adds pairwise and combinatorial testing to Xunit. When combined with Xunit's [Theory] attribute, generates test cases that run a test under many conditions that you control via test method parameters.

Xunit.StaFact

Run your xunit-based tests on an STA thread with the WPF Dispatcher, a WinForms SynchronizationContext, or even a cross-platform generic UI thread emulation with a SynchronizationContext that keeps code running on a "main thread" for that test. Simply use [WpfFact], [WinFormsFact], [StaFact] or the cross-platform [UIFact] on your test method to run your test under conditions that most closely match the main thread in your application. Theory variants of these attributes allow for parameterized testing. Check out the xunit.combinatorial nuget package for pairwise or combinatorial testing with theories.

xunit.v3.core

Includes the core library (xunit.v3.core.dll), to be used for writing tests; extensibility authors should include xunit.v3.extensibility.core instead. Supports .NET Framework 4.7.2 or later and .NET 8 or later.

xunit.v3.runner.inproc.console

In-process console runner for xUnit.net framework, providing the entrypoint for self-executing unit tests. Supports .NET Framework 4.7.2 or later and .NET 8 or later.

GitHub repositories (15)

Showing the top 15 popular GitHub repositories that depend on xunit.v3.extensibility.core:

Repository Stars
ChilliCream/graphql-platform
Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Nitro the awesome Monaco based GraphQL IDE.
FastEndpoints/FastEndpoints
A light-weight REST API development framework for ASP.NET 8 and newer.
xunit/xunit
xUnit.net is a free, open source, community-focused unit testing tool for .NET.
testcontainers/testcontainers-dotnet
A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.
VerifyTests/Verify
Verify is a snapshot testing tool that simplifies the assertion of complex data models and documents.
thomhurst/TUnit
A modern, fast and flexible .NET testing framework
meziantou/Meziantou.Framework
jbe2277/waf
Win Application Framework (WAF) is a lightweight Framework that helps you to create well structured XAML Applications.
dotnet/Nerdbank.Streams
Specialized .NET Streams and pipes for full duplex in-proc communication, web sockets, and multiplexing
xunit/samples.xunit
Samples for xUnit.net (please open issues in https://github.com/xunit/xunit)
pengweiqhca/Xunit.DependencyInjection
Use Microsoft.Extensions.DependencyInjection to resolve xUnit test cases.
nats-io/nats.net
Full Async C# / .NET client for NATS
martincostello/xunit-logging
Logging extensions for xunit
AArnott/Xunit.Combinatorial
Adds combinatorial and pairwise testing capability to Xunit tests
roryprimrose/Neovolve.Logging.Xunit
A Microsoft.Extensions.Logging provider for xUnit test output
Version Downloads Last updated
2.0.1 72,642 4/5/2025
2.0.0 336,900 3/1/2025
1.1.0 540,007 2/7/2025
1.0.1 400,726 1/10/2025
1.0.0 479,186 12/16/2024
0.7.0-pre.15 9,187 11/30/2024
0.6.0-pre.7 47,538 11/8/2024
0.5.0-pre.27 16,519 10/18/2024
0.4.0-pre.20 45,716 9/22/2024
0.3.0-pre.18 14,199 8/31/2024
0.2.0-pre.69 13,706 7/31/2024