Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/core/testing/unit-testing-fsharp-with-xunit.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ The test project requires other packages to create and run unit tests. `dotnet n
dotnet reference add ../MathService/MathService.fsproj
```

> [!TIP]
> If you're using .NET 9 SDK or earlier, use the "verb first" form (`dotnet add reference`) instead. The "noun first" form was introduced in .NET 10.

You can see the entire file in the [samples repository](https://github.com/dotnet/samples/blob/main/core/getting-started/unit-testing-with-fsharp/MathService.Tests/MathService.Tests.fsproj) on GitHub.

You have the following final solution layout:
Expand Down
Loading