Skip to content
Development
Skill

/migrate-xunit-to-xunit-v3

Migrate .NET test projects from xUnit.net v2 to xunit.v3 and fix v3 breaks. Use for package/CPM conversion, OutputType=Exe, preserving the VSTest or MTP runner (including projects currently using YTest.MTP.XUnit2), incompatible TFMs, async void tests, string-to-Type attributes,

From plugin
dotnet-skills
5.4k100 skills16 agents
Install
$ npx -y skills add dotnet/skills --skill migrate-xunit-to-xunit-v3 --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/migrate-xunit-to-xunit-v3

Context preview

The summary Claude sees to decide when to auto-load this skill.

Migrate .NET test projects from xUnit.net v2 to xunit.v3 and fix v3 breaks. Use for package/CPM conversion, OutputType=Exe, preserving the VSTest or MTP runner (including projects currently using YTest.MTP.XUnit2), incompatible TFMs, async void tests, string-to-Type attributes,

SKILL.md

migrate-xunit-to-xunit-v3.SKILL.md
name: migrate-xunit-to-xunit-v3
description: >
  Migrate .NET test projects from xUnit.net v2 to xunit.v3 and fix v3 breaks.
  Use for package/CPM conversion, OutputType=Exe, preserving the VSTest or MTP
  runner (including projects currently using YTest.MTP.XUnit2), incompatible
  TFMs, async void tests,
  string-to-Type attributes, custom Fact/Theory/BeforeAfterTest attributes,
  Xunit.SkippableFact, xunit.abstractions/extensibility consolidation, and
  Xunit.Combinatorial/StaFact compatibility. Do not use for framework
  conversion or a runner-only migration. For xUnit v3 MTP filter syntax, also
  use migrate-vstest-to-mtp.
license: MIT

xunit.v3 Migration

Migrate .NET test projects from xUnit.net v2 to xUnit.net v3. The outcome is a solution where all test projects reference `xunit.v3.*` packages, compiles cleanly, and all tests pass with the same results as before migration.

When to Use

  • Upgrading test projects from `xunit` (v2) packages to `xunit.v3`
  • Resolving compilation errors after updating xunit package references to v3

When Not to Use

  • Migrating between test frameworks (e.g., MSTest or NUnit to xUnit.net) — different effort entirely
  • Migrating from VSTest to Microsoft.Testing.Platform — use `migrate-vstest-to-mtp`
  • The projects already reference `xunit.v3` — migration is done

Inputs

| Input | Required | Description | |-------|----------|-------------| | Test project or solution | No | Discover `.csproj`, `.sln`, `.slnx`, central props, and source in the current working directory; ask only if none are found or the target is ambiguous |

Workspace and Completion Contract

  • Skill activation is not completion. For migrate/fix/update requests, inspect

the staged files, edit them, and run tests in the same task.

  • The skill base directory contains only guidance. Search the current working

directory and open paths exactly as returned. If a tool rejects a path just found by search, retry with another available reader/editor instead of concluding that files are missing.

  • Do not ask the user to provide a path while workspace discovery can find it.
  • Inventory project/central package files and all affected source in one pass.

A package-only migration is incomplete when v2-only APIs remain.

  • End with the detected source version and runner, exact package compatibility

set, files changed, discovered/passed/failed/skipped counts, and any platform-specific result. A build without test discovery is not success.

  • Package validity is empirical: record the configured feed query or resolved

package graph and a successful restore. In the final result, say how the selected exact versions were proven available; do not merely name a version and leave a judge or user to infer whether it exists.

Workflow

> **Commit strategy:** Do not create commits unless the user asks. Keep project > configuration and source edits logically separable in the diff, but finish > and verify the whole requested migration.

> **Prioritization:** Steps 1-5 are required for every migration. Steps 6-12 are conditional — only apply the ones relevant to the project's code patterns. Skip steps that don't apply.

Decisions that change the result

Run this preflight before editing:

| Detected state | Required action | |---|---| | Project references `xunit.v3`, has the required executable/runner configuration, contains no remaining v2 packages or v2-only API patterns, and its existing test command passes | Stop: migration is already complete. Do not update versions, create props files, or modify source. Report the verified no-op result. If any required v3 adaptation remains, make only that repair instead of treating the package reference alone as completion. | | xUnit v2 uses `YTest.MTP.XUnit2` | Preserve MTP: remove that shim, set `UseMicrosoftTestingPlatformRunner=true`, and do not add `xunit.runner.visualstudio` or `IsTestingPlatformApplication=false`. | | xUnit v2 does not use the MTP shim | Preserve VSTest: keep/update `xunit.runner.visualstudio` and set `IsTestingPlatformApplication=false`. | | A custom type derives from `BeforeAfterTestAttribute` | Preserve that inheritance and its behavior. Add the `IXunitTest` parameter to both overrides and pass it to `base.Before`/`base.After`; do not replace the subclass with a direct interface implementation. | | A Type-based collection/orderer attribute points to a custom type | Migrate both the attribute syntax and the referenced type's v3 contract. For a collection factory, implement the required xUnit v3 `IXunitTestCollectionFactory` behavior; compiling the attribute while leaving an empty factory is not a complete migration. | | Companion packages are present | Resolve `xunit.v3`, Xunit.Combinatorial, and Xunit.StaFact as one compatible set from configured feeds. If the newest xunit.v3 major has no compatible stable companion on those feeds, select the newest compatible xunit.v3 major and explain the pin. Validate discovery, not just compilation. | | `OutputType=Exe` makes a `net*-windows` project fail on a non-Windows host | Add `EnableWindowsTargeting=true` when cross-building is intended, then rerun. Do not dismiss this migration-induced failure as pre-existing. |

Resolve package versions from the configured package source. Do not guess a version from the product's "v3" name or update unrelated packages. Change only files that contain a package, property, or source construct required by the applicable rule.

After editing a Central Package Management project, read back both `Directory.Packages.props` and the project file. Confirm that `PackageVersion` owns the version, the renamed `PackageReference` is versionless, and `OutputType=Exe` is effective.

Step 1: Identify xUnit.net projects and verify compatibility

Search for test projects referencing xUnit.net v2 packages:

  • `xunit`
  • `xunit.abstractions`
  • `xunit.assert`
  • `xunit.core`
  • `xunit.extensibility.core`
  • `xunit.extensibility.execution`
  • `xunit.r
Read more
Ships withdotnet-skills

This repository contains the .NET team's curated set of portable skills and host-specific custom agents for coding agents. For information about the Agent Skills standard, see agentskills.io.

Get the whole plugin

Other skills on dotnet-skills.