From 4f66076e9c2df01d7a9e3db6107df381af27ba39 Mon Sep 17 00:00:00 2001 From: Constantin Tews Date: Fri, 11 Jul 2025 10:57:44 +0200 Subject: [PATCH] Fix generated docs. --- .config/dotnet-tools.json | 2 +- README.md | 2 +- docs/index.fsx | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 42d6a361..ea69320c 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -15,7 +15,7 @@ ] }, "fsdocs-tool": { - "version": "20.0.1", + "version": "19.1.1", "commands": [ "fsdocs" ] diff --git a/README.md b/README.md index 6ef3c7df..9744453a 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://img.shields.io/github/actions/workflow/status/fsprojects/FsUnit/main.yml?branch=master&logo=github&labelColor=4A4A4A&label=Build%20and%20Test)](https://github.com/fsprojects/FsUnit/actions?query=branch%3Amaster) -[![NuGet Status](https://buildstats.info/nuget/FsUnit)](https://www.nuget.org/packages/FsUnit/) +[![NuGet Status](https://img.shields.io/nuget/v/FsUnit)](https://www.nuget.org/packages/FsUnit/) **FsUnit** is a set of libraries that makes unit-testing with F# more enjoyable. It adds a special syntax to your favorite .NET testing framework. FsUnit currently supports NUnit, xUnit, and MsTest. diff --git a/docs/index.fsx b/docs/index.fsx index b827a921..89b00edb 100644 --- a/docs/index.fsx +++ b/docs/index.fsx @@ -20,14 +20,14 @@ FsUnit currently supports NUnit, xUnit, and MsTest. The goals of FsUnit are: -* to make unit-testing feel more at home in F# , i.e., more functional. +* to make unit-testing feel more at home in F#, i.e., more functional. * to leverage existing test frameworks while at the same time adapting them to the F# language in new ways. NuGet packages are available for each of the supported testing frameworks: -* [![NuGet Status](https://buildstats.info/nuget/FsUnit) - NUnit](https://www.nuget.org/packages/FsUnit/) -* [![NuGet Status](https://buildstats.info/nuget/FsUnit.Xunit) - xUnit](https://www.nuget.org/packages/FsUnit.Xunit/) -* [![NuGet Status](https://buildstats.info/nuget/Fs30Unit.MsTest) - MsTest](https://www.nuget.org/packages/Fs30Unit.MsTest/) +* [![NuGet Status](https://img.shields.io/nuget/v/FsUnit) - NUnit](https://www.nuget.org/packages/FsUnit/) +* [![NuGet Status](https://img.shields.io/nuget/v/FsUnit.Xunit) - xUnit](https://www.nuget.org/packages/FsUnit.Xunit/) +* [![NuGet Status](https://img.shields.io/nuget/v/Fs30Unit.MsTest) - MsTest](https://www.nuget.org/packages/Fs30Unit.MsTest/) Syntax