From 980f7cf1a2124281a7ad57af81167830b4b0b494 Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Sat, 18 Jul 2026 09:08:26 +1000 Subject: [PATCH 1/3] expose Ssim --- docs/comparer.md | 43 ++++++++++++++++++- docs/mdsource/comparer.source.md | 15 +++++++ src/Directory.Build.props | 2 +- src/Verify.Tests/Comparer/PngImageTests.cs | 28 ++++++++++++ src/Verify.Tests/Comparer/SsimTests.cs | 34 +++++++++++++++ src/Verify.Tests/Snippets/ComparerSnippets.cs | 24 +++++++++++ src/Verify/Compare/Png/PngDecoder.cs | 4 +- src/Verify/Compare/Png/PngImage.cs | 33 ++++++++++++-- src/Verify/Compare/Png/Ssim.cs | 16 ++++++- 9 files changed, 190 insertions(+), 9 deletions(-) create mode 100644 src/Verify.Tests/Comparer/PngImageTests.cs diff --git a/docs/comparer.md b/docs/comparer.md index 125432971..cf4409282 100644 --- a/docs/comparer.md +++ b/docs/comparer.md @@ -34,7 +34,7 @@ static Task CompareImages( return Task.FromResult(result); } ``` -snippet source | anchor +snippet source | anchor The returned `CompareResult.NotEqual` takes an optional message that will be rendered in the resulting text displayed to the user on test failure. @@ -103,7 +103,7 @@ VerifierSettings.RegisterStreamComparer( compare: CompareImages); await VerifyFile("TheImage.png"); ``` -snippet source | anchor +snippet source | anchor @@ -248,6 +248,45 @@ public Task InstanceSsimForPngFluent() => Dimension mismatches between the received and verified images are always reported as not equal, regardless of threshold. +### Standalone SSIM scoring + +The SSIM score can also be computed directly, outside of a verification. This is useful, for example, to report a similarity metric per rendered page in a custom report: + + + +```cs +public static double Score(Stream received, Stream verified) => + Ssim.Compare(received, verified); +``` +snippet source | anchor + + +`Ssim.Compare` accepts two PNG streams, two PNG byte arrays, or two `PngImage` instances decoded via `PngDecoder.Decode`. Scores range from `0` (completely different) to `1` (identical). Comparing images of different dimensions throws an `ArgumentException`. + +To treat a dimension mismatch as a distinct state instead of an exception, decode with `PngDecoder.Decode` and check dimensions before comparing: + + + +```cs +public static double? ScoreIfSameSize(Stream received, Stream verified) +{ + var receivedImage = PngDecoder.Decode(received); + var verifiedImage = PngDecoder.Decode(verified); + if (receivedImage.Width != verifiedImage.Width || + receivedImage.Height != verifiedImage.Height) + { + return null; + } + + return Ssim.Compare(receivedImage, verifiedImage); +} +``` +snippet source | anchor + + +`PngDecoder` supports the same PNG subset as the comparer (see below). + + ### Supported PNG variants The bundled decoder targets the common subset of PNGs produced by test scenarios: diff --git a/docs/mdsource/comparer.source.md b/docs/mdsource/comparer.source.md index 195734c3c..122f49f3a 100644 --- a/docs/mdsource/comparer.source.md +++ b/docs/mdsource/comparer.source.md @@ -59,6 +59,21 @@ snippet: InstanceSsimForPng Dimension mismatches between the received and verified images are always reported as not equal, regardless of threshold. +### Standalone SSIM scoring + +The SSIM score can also be computed directly, outside of a verification. This is useful, for example, to report a similarity metric per rendered page in a custom report: + +snippet: SsimCompare + +`Ssim.Compare` accepts two PNG streams, two PNG byte arrays, or two `PngImage` instances decoded via `PngDecoder.Decode`. Scores range from `0` (completely different) to `1` (identical). Comparing images of different dimensions throws an `ArgumentException`. + +To treat a dimension mismatch as a distinct state instead of an exception, decode with `PngDecoder.Decode` and check dimensions before comparing: + +snippet: SsimCompareDimensions + +`PngDecoder` supports the same PNG subset as the comparer (see below). + + ### Supported PNG variants The bundled decoder targets the common subset of PNGs produced by test scenarios: diff --git a/src/Directory.Build.props b/src/Directory.Build.props index ce2860dde..1d68a012f 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -2,7 +2,7 @@ CA1822;CS1591;CS0649;xUnit1026;xUnit1013;CS1573;VerifyTestsProjectDir;VerifySetParameters;PolyFillTargetsForNuget;xUnit1051;NU1608;NU1109 - 31.25.0 + 31.26.0 enable preview 1.0.0 diff --git a/src/Verify.Tests/Comparer/PngImageTests.cs b/src/Verify.Tests/Comparer/PngImageTests.cs new file mode 100644 index 000000000..140352dd5 --- /dev/null +++ b/src/Verify.Tests/Comparer/PngImageTests.cs @@ -0,0 +1,28 @@ +public class PngImageTests +{ + [Fact] + public void Valid() + { + var rgba = new byte[2 * 3 * 4]; + var image = new PngImage(2, 3, rgba); + Assert.Equal(2, image.Width); + Assert.Equal(3, image.Height); + Assert.Same(rgba, image.Rgba); + } + + [Fact] + public void Zero_Width_Throws() => + Assert.Throws(() => new PngImage(0, 3, [])); + + [Fact] + public void Zero_Height_Throws() => + Assert.Throws(() => new PngImage(3, 0, [])); + + [Fact] + public void Buffer_Length_Mismatch_Throws() + { + var exception = Assert.Throws(() => new PngImage(2, 2, new byte[15])); + Assert.Contains("Expected: 16", exception.Message); + Assert.Contains("Actual: 15", exception.Message); + } +} diff --git a/src/Verify.Tests/Comparer/SsimTests.cs b/src/Verify.Tests/Comparer/SsimTests.cs index 965845443..3880e3417 100644 --- a/src/Verify.Tests/Comparer/SsimTests.cs +++ b/src/Verify.Tests/Comparer/SsimTests.cs @@ -48,6 +48,40 @@ public void Large_Difference_Low_Score() Assert.True(score < 0.5, $"Expected low score, got {score}"); } + [Fact] + public void Dimension_Mismatch_Throws() + { + var a = Solid(8, 8, 100); + var b = Solid(9, 8, 100); + var exception = Assert.Throws(() => Ssim.Compare(a, b)); + Assert.Contains("8x8", exception.Message); + Assert.Contains("9x8", exception.Message); + } + + [Fact] + public void Stream_Overload() + { + var png = PngTestHelper.EncodeRgba(16, 16, Random(16, 16, seed: 5).Rgba); + var score = Ssim.Compare(new MemoryStream(png), new MemoryStream(png)); + Assert.Equal(1.0, score, precision: 6); + } + + [Fact] + public void Stream_Overload_Dimension_Mismatch_Throws() + { + var a = PngTestHelper.EncodeRgba(10, 10, new byte[10 * 10 * 4]); + var b = PngTestHelper.EncodeRgba(11, 10, new byte[11 * 10 * 4]); + Assert.Throws(() => Ssim.Compare(new MemoryStream(a), new MemoryStream(b))); + } + + [Fact] + public void Bytes_Overload() + { + var png = PngTestHelper.EncodeRgba(16, 16, Random(16, 16, seed: 6).Rgba); + var score = Ssim.Compare(png, png); + Assert.Equal(1.0, score, precision: 6); + } + [Fact] public void Noise_Reduces_Score() { diff --git a/src/Verify.Tests/Snippets/ComparerSnippets.cs b/src/Verify.Tests/Snippets/ComparerSnippets.cs index 6ffc7250c..e47961b5e 100644 --- a/src/Verify.Tests/Snippets/ComparerSnippets.cs +++ b/src/Verify.Tests/Snippets/ComparerSnippets.cs @@ -36,6 +36,30 @@ public Task InstanceSsimForPngFluent() => #endregion + #region SsimCompare + + public static double Score(Stream received, Stream verified) => + Ssim.Compare(received, verified); + + #endregion + + #region SsimCompareDimensions + + public static double? ScoreIfSameSize(Stream received, Stream verified) + { + var receivedImage = PngDecoder.Decode(received); + var verifiedImage = PngDecoder.Decode(verified); + if (receivedImage.Width != verifiedImage.Width || + receivedImage.Height != verifiedImage.Height) + { + return null; + } + + return Ssim.Compare(receivedImage, verifiedImage); + } + + #endregion + public async Task StaticComparer() { #region StaticComparer diff --git a/src/Verify/Compare/Png/PngDecoder.cs b/src/Verify/Compare/Png/PngDecoder.cs index 780896814..6d99d0e8f 100644 --- a/src/Verify/Compare/Png/PngDecoder.cs +++ b/src/Verify/Compare/Png/PngDecoder.cs @@ -1,4 +1,6 @@ -static class PngDecoder +namespace VerifyTests; + +public static class PngDecoder { static ReadOnlySpan Signature => [0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A]; diff --git a/src/Verify/Compare/Png/PngImage.cs b/src/Verify/Compare/Png/PngImage.cs index 532cd6ede..9c1057e53 100644 --- a/src/Verify/Compare/Png/PngImage.cs +++ b/src/Verify/Compare/Png/PngImage.cs @@ -1,6 +1,31 @@ -readonly struct PngImage(int width, int height, byte[] rgba) +namespace VerifyTests; + +public readonly struct PngImage { - public int Width { get; } = width; - public int Height { get; } = height; - public byte[] Rgba { get; } = rgba; + public PngImage(int width, int height, byte[] rgba) + { + if (width < 1) + { + throw new ArgumentOutOfRangeException(nameof(width), width, "Must be at least 1."); + } + + if (height < 1) + { + throw new ArgumentOutOfRangeException(nameof(height), height, "Must be at least 1."); + } + + Ensure.NotNull(rgba); + if (rgba.Length != (long)width * height * 4) + { + throw new ArgumentException($"Length must be width * height * 4. Expected: {(long)width * height * 4}. Actual: {rgba.Length}.", nameof(rgba)); + } + + Width = width; + Height = height; + Rgba = rgba; + } + + public int Width { get; } + public int Height { get; } + public byte[] Rgba { get; } } diff --git a/src/Verify/Compare/Png/Ssim.cs b/src/Verify/Compare/Png/Ssim.cs index 01a07abfc..d9870e329 100644 --- a/src/Verify/Compare/Png/Ssim.cs +++ b/src/Verify/Compare/Png/Ssim.cs @@ -1,4 +1,6 @@ -static class Ssim +namespace VerifyTests; + +public static class Ssim { const int windowSize = 8; const float k1 = 0.01f; @@ -7,8 +9,20 @@ static class Ssim const float c1 = k1 * l * k1 * l; const float c2 = k2 * l * k2 * l; + public static double Compare(Stream a, Stream b) => + Compare(PngDecoder.Decode(a), PngDecoder.Decode(b)); + + public static double Compare(byte[] a, byte[] b) => + Compare(new MemoryStream(a), new MemoryStream(b)); + public static double Compare(PngImage a, PngImage b) { + if (a.Width != b.Width || + a.Height != b.Height) + { + throw new ArgumentException($"Image dimensions must match. a: {a.Width}x{a.Height}, b: {b.Width}x{b.Height}."); + } + var width = a.Width; var height = a.Height; var rgbaA = a.Rgba; From 38c783e114835b25f33b16c73eb780069e06e1f7 Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Sat, 18 Jul 2026 18:11:45 +1000 Subject: [PATCH 2/3] . --- src/Verify.Tests/Comparer/SsimTests.cs | 23 ++ src/Verify/Compare/Png/PngDecoder.cs | 377 +----------------- src/Verify/Compare/Png/PngReader.cs | 451 ++++++++++++++++++++++ src/Verify/Compare/Png/PngSsimComparer.cs | 11 +- src/Verify/Compare/Png/Ssim.cs | 92 ++++- 5 files changed, 575 insertions(+), 379 deletions(-) create mode 100644 src/Verify/Compare/Png/PngReader.cs diff --git a/src/Verify.Tests/Comparer/SsimTests.cs b/src/Verify.Tests/Comparer/SsimTests.cs index 3880e3417..2c38ca6c8 100644 --- a/src/Verify.Tests/Comparer/SsimTests.cs +++ b/src/Verify.Tests/Comparer/SsimTests.cs @@ -82,6 +82,29 @@ public void Bytes_Overload() Assert.Equal(1.0, score, precision: 6); } + [Fact] + public void Streaming_Matches_InMemory_BitForBit() + { + // The streaming Stream/byte overloads decode a band at a time; they must produce exactly the + // same score as decoding both images fully and comparing. Includes ragged sizes (not a + // multiple of the 8px window) and the sub-window tiny path. + (int w, int h)[] sizes = [(8, 8), (16, 16), (33, 17), (257, 101), (128, 128), (5, 40), (40, 5)]; + foreach (var (w, h) in sizes) + { + var aRgba = Random(w, h, seed: w * 7 + h).Rgba; + var bRgba = Random(w, h, seed: w * 7 + h + 1).Rgba; + + var inMemory = Ssim.Compare(new PngImage(w, h, aRgba), new PngImage(w, h, bRgba)); + var streamed = Ssim.Compare( + new MemoryStream(PngTestHelper.EncodeRgba(w, h, aRgba)), + new MemoryStream(PngTestHelper.EncodeRgba(w, h, bRgba))); + + Assert.Equal( + BitConverter.DoubleToInt64Bits(inMemory), + BitConverter.DoubleToInt64Bits(streamed)); + } + } + [Fact] public void Noise_Reduces_Score() { diff --git a/src/Verify/Compare/Png/PngDecoder.cs b/src/Verify/Compare/Png/PngDecoder.cs index 6d99d0e8f..4573caa39 100644 --- a/src/Verify/Compare/Png/PngDecoder.cs +++ b/src/Verify/Compare/Png/PngDecoder.cs @@ -2,384 +2,21 @@ namespace VerifyTests; public static class PngDecoder { - static ReadOnlySpan Signature => [0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A]; - - const uint ihdr = ('I' << 24) | ('H' << 16) | ('D' << 8) | 'R'; - const uint plte = ('P' << 24) | ('L' << 16) | ('T' << 8) | 'E'; - const uint idatType = ('I' << 24) | ('D' << 16) | ('A' << 8) | 'T'; - const uint iend = ('I' << 24) | ('E' << 16) | ('N' << 8) | 'D'; - const uint trns = ('t' << 24) | ('R' << 16) | ('N' << 8) | 'S'; - public static PngImage Decode(Stream stream) { - Span sig = stackalloc byte[8]; - ReadExact(stream, sig); - if (!sig.SequenceEqual(Signature)) - { - throw new("Not a PNG (bad signature)."); - } - - var width = 0; - var height = 0; - byte colorType = 0; - byte[]? palette = null; - byte[]? transparency = null; - using var idat = new MemoryStream(); - var seenIhdr = false; - - Span header = stackalloc byte[8]; - Span crc = stackalloc byte[4]; - Span ihdrData = stackalloc byte[13]; - - while (true) - { - if (stream.ReadAtLeast(header, header.Length, throwOnEndOfStream: false) < header.Length) - { - break; - } - - var length = ReadUInt32BigEndian(header); - var type = ((uint)header[4] << 24) | ((uint)header[5] << 16) | ((uint)header[6] << 8) | header[7]; - - if (length > int.MaxValue) - { - break; - } - - var intLength = (int)length; - - switch (type) - { - case ihdr: - if (intLength != 13) - { - throw new("Invalid IHDR length."); - } - - ReadExact(stream, ihdrData); - width = (int)ReadUInt32BigEndian(ihdrData); - height = (int)ReadUInt32BigEndian(ihdrData[4..]); - var bitDepth = ihdrData[8]; - colorType = ihdrData[9]; - var compression = ihdrData[10]; - var filter = ihdrData[11]; - var interlace = ihdrData[12]; - if (compression != 0 || filter != 0) - { - throw new("Unsupported PNG compression/filter method."); - } - - if (interlace != 0) - { - throw new("Unsupported PNG variant: Adam7 interlacing not supported."); - } - - if (bitDepth != 8) - { - throw new($"Unsupported PNG bit depth: {bitDepth}. Only 8-bit supported."); - } - - if (colorType != 0 && colorType != 2 && colorType != 3 && colorType != 4 && colorType != 6) - { - throw new($"Unsupported PNG color type: {colorType}."); - } - - seenIhdr = true; - break; - - case plte: - if (intLength % 3 != 0) - { - throw new("Invalid PLTE length."); - } - - palette = new byte[intLength]; - ReadExact(stream, palette); - break; - - case trns: - transparency = new byte[intLength]; - ReadExact(stream, transparency); - break; - - case idatType: - CopyExact(stream, idat, intLength); - break; - - case iend: - if (!seenIhdr) - { - throw new("PNG missing IHDR."); - } - - if (idat.Length == 0) - { - throw new("PNG missing IDAT."); - } - - ReadExact(stream, crc); - idat.Position = 0; - return Reconstruct(idat, width, height, colorType, palette, transparency); - - default: - // unknown chunk — skip - Skip(stream, intLength); - break; - } - - ReadExact(stream, crc); - } - - if (!seenIhdr) - { - throw new("PNG missing IHDR."); - } - - if (idat.Length == 0) - { - throw new("PNG missing IDAT."); - } - - idat.Position = 0; - return Reconstruct(idat, width, height, colorType, palette, transparency); - } - - static PngImage Reconstruct(Stream idat, int width, int height, byte colorType, byte[]? palette, byte[]? trns) - { - var rawChannels = colorType switch - { - 0 => 1, - 2 => 3, - 3 => 1, - 4 => 2, - 6 => 4, - _ => throw new("Unreachable.") - }; - var stride = width * rawChannels; - - using var inflate = OpenInflate(idat); + using var reader = new PngReader(stream); + var width = reader.Width; + var height = reader.Height; + // The output escapes into the returned PngImage, so it is a plain allocation rather than + // pooled. The reader's transient row scratch is what comes from the pool. var rgba = new byte[width * height * 4]; - - if (colorType == 6) - { - // Unfilter directly in the output buffer. - var filterByte = new byte[1]; - var prevRow = new byte[stride]; - for (var y = 0; y < height; y++) - { - ReadExact(inflate, filterByte.AsSpan()); - var rowSpan = rgba.AsSpan(y * stride, stride); - ReadExact(inflate, rowSpan); - Unfilter(filterByte[0], rowSpan, prevRow, rawChannels); - rowSpan.CopyTo(prevRow); - } - - return new(width, height, rgba); - } - - // Non-RGBA: one row scratch buffer, expand into rgba row-by-row. - var curr = new byte[stride]; - var prev = new byte[stride]; - var filter = new byte[1]; - + var rowBytes = width * 4; for (var y = 0; y < height; y++) { - ReadExact(inflate, filter.AsSpan()); - ReadExact(inflate, curr.AsSpan()); - Unfilter(filter[0], curr, prev, rawChannels); - ExpandRow(curr, rgba, y, width, colorType, palette, trns); - (prev, curr) = (curr, prev); + reader.ReadRgbaRow(rgba.AsSpan(y * rowBytes, rowBytes)); } return new(width, height, rgba); } - - static Stream OpenInflate(Stream zlibData) - { -#if NET6_0_OR_GREATER - var inflate = new ZLibStream(zlibData, CompressionMode.Decompress, leaveOpen: true); -#else - zlibData.ReadByte(); - zlibData.ReadByte(); - var inflate = new DeflateStream(zlibData, CompressionMode.Decompress, leaveOpen: true); -#endif - return new BufferedStream(inflate, 8192); - } - - static void ExpandRow(byte[] src, byte[] rgba, int y, int width, byte colorType, byte[]? palette, byte[]? trns) - { - var dstRow = y * width * 4; - switch (colorType) - { - case 0: // gray - for (var x = 0; x < width; x++) - { - var g = src[x]; - var o = dstRow + x * 4; - rgba[o] = g; - rgba[o + 1] = g; - rgba[o + 2] = g; - rgba[o + 3] = 255; - } - - break; - case 2: // rgb - for (var x = 0; x < width; x++) - { - var o = dstRow + x * 4; - rgba[o] = src[x * 3]; - rgba[o + 1] = src[x * 3 + 1]; - rgba[o + 2] = src[x * 3 + 2]; - rgba[o + 3] = 255; - } - - break; - case 3: // palette - if (palette is null) - { - throw new("Paletted PNG missing PLTE chunk."); - } - - var paletteEntries = palette.Length / 3; - for (var x = 0; x < width; x++) - { - var index = src[x]; - if (index >= paletteEntries) - { - throw new("PNG palette index out of range."); - } - - var o = dstRow + x * 4; - rgba[o] = palette[index * 3]; - rgba[o + 1] = palette[index * 3 + 1]; - rgba[o + 2] = palette[index * 3 + 2]; - rgba[o + 3] = trns is not null && index < trns.Length ? trns[index] : (byte)255; - } - - break; - case 4: // gray + alpha - for (var x = 0; x < width; x++) - { - var g = src[x * 2]; - var o = dstRow + x * 4; - rgba[o] = g; - rgba[o + 1] = g; - rgba[o + 2] = g; - rgba[o + 3] = src[x * 2 + 1]; - } - - break; - } - } - - static void Unfilter(byte filter, Span curr, ReadOnlySpan prev, int bpp) - { - switch (filter) - { - case 0: - return; - case 1: // Sub - for (var i = bpp; i < curr.Length; i++) - { - curr[i] = (byte)(curr[i] + curr[i - bpp]); - } - - return; - case 2: // Up - for (var i = 0; i < curr.Length; i++) - { - curr[i] = (byte)(curr[i] + prev[i]); - } - - return; - case 3: // Average - for (var i = 0; i < curr.Length; i++) - { - var left = i >= bpp ? curr[i - bpp] : 0; - curr[i] = (byte)(curr[i] + (left + prev[i]) / 2); - } - - return; - case 4: // Paeth - for (var i = 0; i < curr.Length; i++) - { - var left = i >= bpp ? curr[i - bpp] : 0; - int up = prev[i]; - var upLeft = i >= bpp ? prev[i - bpp] : 0; - curr[i] = (byte)(curr[i] + Paeth(left, up, upLeft)); - } - - return; - default: - throw new($"Unknown PNG filter type: {filter}."); - } - } - - static int Paeth(int a, int b, int c) - { - var p = a + b - c; - var pa = Math.Abs(p - a); - var pb = Math.Abs(p - b); - var pc = Math.Abs(p - c); - if (pa <= pb && pa <= pc) - { - return a; - } - - return pb <= pc ? b : c; - } - - static void ReadExact(Stream stream, Span buffer) - { - while (buffer.Length > 0) - { - var read = stream.Read(buffer); - if (read == 0) - { - throw new("Unexpected end of PNG stream."); - } - - buffer = buffer[read..]; - } - } - - static void CopyExact(Stream source, Stream destination, int count) - { - Span buffer = stackalloc byte[4096]; - while (count > 0) - { - var toRead = Math.Min(buffer.Length, count); - var read = source.Read(buffer[..toRead]); - if (read == 0) - { - throw new("Unexpected end of PNG stream."); - } - - destination.Write(buffer[..read]); - count -= read; - } - } - - static void Skip(Stream stream, int count) - { - Span buffer = stackalloc byte[1024]; - while (count > 0) - { - var toRead = Math.Min(buffer.Length, count); - var read = stream.Read(buffer[..toRead]); - if (read == 0) - { - throw new("Unexpected end of PNG stream."); - } - - count -= read; - } - } - - static uint ReadUInt32BigEndian(ReadOnlySpan data) => - ((uint)data[0] << 24) | - ((uint)data[1] << 16) | - ((uint)data[2] << 8) | - data[3]; } diff --git a/src/Verify/Compare/Png/PngReader.cs b/src/Verify/Compare/Png/PngReader.cs new file mode 100644 index 000000000..84fcda170 --- /dev/null +++ b/src/Verify/Compare/Png/PngReader.cs @@ -0,0 +1,451 @@ +namespace VerifyTests; + +// Streaming PNG row reader shared by PngDecoder (full decode) and the streaming SSIM compare. +// Parses IHDR/PLTE/tRNS, then inflates IDAT directly (no full compressed buffer) and yields +// unfiltered, RGBA-expanded rows on demand. Row scratch is rented from ArrayPool so repeated +// decodes do not churn the heap. The decoded output buffer, when one is needed, is owned by the +// caller (PngDecoder allocates it because it escapes into a PngImage). +sealed class PngReader : IDisposable +{ + static ReadOnlySpan Signature => [0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A]; + + const uint ihdr = ('I' << 24) | ('H' << 16) | ('D' << 8) | 'R'; + const uint plte = ('P' << 24) | ('L' << 16) | ('T' << 8) | 'E'; + const uint idatType = ('I' << 24) | ('D' << 16) | ('A' << 8) | 'T'; + const uint iend = ('I' << 24) | ('E' << 16) | ('N' << 8) | 'D'; + const uint trns = ('t' << 24) | ('R' << 16) | ('N' << 8) | 'S'; + + public int Width { get; } + public int Height { get; } + + readonly byte colorType; + readonly byte[]? palette; + readonly byte[]? transparency; + readonly int rawChannels; + readonly int stride; + + readonly IdatStream idatStream; + readonly Stream inflate; + byte[] prev; + byte[] curr; + bool disposed; + + public PngReader(Stream stream) + { + Span sig = stackalloc byte[8]; + ReadExact(stream, sig); + if (!sig.SequenceEqual(Signature)) + { + throw new("Not a PNG (bad signature)."); + } + + var seenIhdr = false; + var foundIdat = false; + var firstIdatLength = 0; + Span header = stackalloc byte[8]; + Span crc = stackalloc byte[4]; + Span ihdrData = stackalloc byte[13]; + + while (!foundIdat) + { + if (stream.ReadAtLeast(header, header.Length, throwOnEndOfStream: false) < header.Length) + { + break; + } + + var length = ReadUInt32BigEndian(header); + var type = ((uint)header[4] << 24) | ((uint)header[5] << 16) | ((uint)header[6] << 8) | header[7]; + + if (length > int.MaxValue) + { + break; + } + + var intLength = (int)length; + + switch (type) + { + case ihdr: + if (intLength != 13) + { + throw new("Invalid IHDR length."); + } + + ReadExact(stream, ihdrData); + Width = (int)ReadUInt32BigEndian(ihdrData); + Height = (int)ReadUInt32BigEndian(ihdrData[4..]); + var bitDepth = ihdrData[8]; + colorType = ihdrData[9]; + var compression = ihdrData[10]; + var filter = ihdrData[11]; + var interlace = ihdrData[12]; + if (compression != 0 || filter != 0) + { + throw new("Unsupported PNG compression/filter method."); + } + + if (interlace != 0) + { + throw new("Unsupported PNG variant: Adam7 interlacing not supported."); + } + + if (bitDepth != 8) + { + throw new($"Unsupported PNG bit depth: {bitDepth}. Only 8-bit supported."); + } + + if (colorType != 0 && colorType != 2 && colorType != 3 && colorType != 4 && colorType != 6) + { + throw new($"Unsupported PNG color type: {colorType}."); + } + + seenIhdr = true; + ReadExact(stream, crc); + break; + + case plte: + if (intLength % 3 != 0) + { + throw new("Invalid PLTE length."); + } + + palette = new byte[intLength]; + ReadExact(stream, palette); + ReadExact(stream, crc); + break; + + case trns: + transparency = new byte[intLength]; + ReadExact(stream, transparency); + ReadExact(stream, crc); + break; + + case idatType: + // Hand off to IdatStream mid-chunk: it serves this payload then any subsequent + // IDAT chunks. Deliberately do not read the payload or CRC here. + firstIdatLength = intLength; + foundIdat = true; + break; + + case iend: + throw new(seenIhdr ? "PNG missing IDAT." : "PNG missing IHDR."); + + default: + Skip(stream, intLength); + ReadExact(stream, crc); + break; + } + } + + if (!seenIhdr) + { + throw new("PNG missing IHDR."); + } + + if (!foundIdat) + { + throw new("PNG missing IDAT."); + } + + rawChannels = colorType switch + { + 0 => 1, + 2 => 3, + 3 => 1, + 4 => 2, + 6 => 4, + _ => throw new("Unreachable.") + }; + stride = Width * rawChannels; + + idatStream = new(stream, firstIdatLength); + inflate = OpenInflate(idatStream); + + prev = ArrayPool.Shared.Rent(stride); + curr = ArrayPool.Shared.Rent(stride); + Array.Clear(prev, 0, stride); + } + + // Reads the next scanline, unfilters it, and expands it into dest as RGBA. dest must be Width * 4. + public void ReadRgbaRow(Span dest) + { + var filter = inflate.ReadByte(); + if (filter < 0) + { + throw new("Unexpected end of PNG stream."); + } + + var currSpan = curr.AsSpan(0, stride); + ReadExact(inflate, currSpan); + Unfilter((byte)filter, currSpan, prev.AsSpan(0, stride), rawChannels); + ExpandRow(currSpan, dest, Width, colorType, palette, transparency); + (prev, curr) = (curr, prev); + } + + public void Dispose() + { + if (disposed) + { + return; + } + + disposed = true; + inflate.Dispose(); + idatStream.Dispose(); + ArrayPool.Shared.Return(prev); + ArrayPool.Shared.Return(curr); + } + + static Stream OpenInflate(Stream zlibData) + { +#if NET6_0_OR_GREATER + var inflate = new ZLibStream(zlibData, CompressionMode.Decompress, leaveOpen: true); +#else + zlibData.ReadByte(); + zlibData.ReadByte(); + var inflate = new DeflateStream(zlibData, CompressionMode.Decompress, leaveOpen: true); +#endif + return new BufferedStream(inflate, 8192); + } + + static void ExpandRow(ReadOnlySpan src, Span dest, int width, byte colorType, byte[]? palette, byte[]? trns) + { + switch (colorType) + { + case 0: // gray + for (var x = 0; x < width; x++) + { + var g = src[x]; + var o = x * 4; + dest[o] = g; + dest[o + 1] = g; + dest[o + 2] = g; + dest[o + 3] = 255; + } + + break; + case 2: // rgb + for (var x = 0; x < width; x++) + { + var o = x * 4; + dest[o] = src[x * 3]; + dest[o + 1] = src[x * 3 + 1]; + dest[o + 2] = src[x * 3 + 2]; + dest[o + 3] = 255; + } + + break; + case 3: // palette + if (palette is null) + { + throw new("Paletted PNG missing PLTE chunk."); + } + + var paletteEntries = palette.Length / 3; + for (var x = 0; x < width; x++) + { + var index = src[x]; + if (index >= paletteEntries) + { + throw new("PNG palette index out of range."); + } + + var o = x * 4; + dest[o] = palette[index * 3]; + dest[o + 1] = palette[index * 3 + 1]; + dest[o + 2] = palette[index * 3 + 2]; + dest[o + 3] = trns is not null && index < trns.Length ? trns[index] : (byte)255; + } + + break; + case 4: // gray + alpha + for (var x = 0; x < width; x++) + { + var g = src[x * 2]; + var o = x * 4; + dest[o] = g; + dest[o + 1] = g; + dest[o + 2] = g; + dest[o + 3] = src[x * 2 + 1]; + } + + break; + case 6: // rgba + src[..(width * 4)].CopyTo(dest); + break; + } + } + + static void Unfilter(byte filter, Span curr, ReadOnlySpan prev, int bpp) + { + switch (filter) + { + case 0: + return; + case 1: // Sub + for (var i = bpp; i < curr.Length; i++) + { + curr[i] = (byte)(curr[i] + curr[i - bpp]); + } + + return; + case 2: // Up + for (var i = 0; i < curr.Length; i++) + { + curr[i] = (byte)(curr[i] + prev[i]); + } + + return; + case 3: // Average + for (var i = 0; i < curr.Length; i++) + { + var left = i >= bpp ? curr[i - bpp] : 0; + curr[i] = (byte)(curr[i] + (left + prev[i]) / 2); + } + + return; + case 4: // Paeth + for (var i = 0; i < curr.Length; i++) + { + var left = i >= bpp ? curr[i - bpp] : 0; + int up = prev[i]; + var upLeft = i >= bpp ? prev[i - bpp] : 0; + curr[i] = (byte)(curr[i] + Paeth(left, up, upLeft)); + } + + return; + default: + throw new($"Unknown PNG filter type: {filter}."); + } + } + + static int Paeth(int a, int b, int c) + { + var p = a + b - c; + var pa = Math.Abs(p - a); + var pb = Math.Abs(p - b); + var pc = Math.Abs(p - c); + if (pa <= pb && pa <= pc) + { + return a; + } + + return pb <= pc ? b : c; + } + + static void ReadExact(Stream stream, Span buffer) + { + while (buffer.Length > 0) + { + var read = stream.Read(buffer); + if (read == 0) + { + throw new("Unexpected end of PNG stream."); + } + + buffer = buffer[read..]; + } + } + + static void Skip(Stream stream, int count) + { + Span buffer = stackalloc byte[1024]; + while (count > 0) + { + var toRead = Math.Min(buffer.Length, count); + var read = stream.Read(buffer[..toRead]); + if (read == 0) + { + throw new("Unexpected end of PNG stream."); + } + + count -= read; + } + } + + static uint ReadUInt32BigEndian(ReadOnlySpan data) => + ((uint)data[0] << 24) | + ((uint)data[1] << 16) | + ((uint)data[2] << 8) | + data[3]; + + // Presents the concatenated payloads of consecutive IDAT chunks as one continuous stream, + // transparently skipping chunk CRCs and headers, so the zlib/deflate layer can inflate + // directly from the source without the whole compressed image being buffered first. + sealed class IdatStream(Stream source, int firstChunkLength) : Stream + { + int chunkRemaining = firstChunkLength; + bool ended; + + public override int Read(byte[] buffer, int offset, int count) => + ReadCore(buffer.AsSpan(offset, count)); + +#if NET6_0_OR_GREATER + public override int Read(Span buffer) => + ReadCore(buffer); +#endif + + int ReadCore(Span buffer) + { + var total = 0; + while (buffer.Length > 0 && !ended) + { + if (chunkRemaining == 0 && !AdvanceToNextIdat()) + { + ended = true; + break; + } + + var toRead = Math.Min(buffer.Length, chunkRemaining); + var read = source.Read(buffer[..toRead]); + if (read == 0) + { + ended = true; + break; + } + + chunkRemaining -= read; + buffer = buffer[read..]; + total += read; + } + + return total; + } + + bool AdvanceToNextIdat() + { + Span temp = stackalloc byte[8]; + // Skip the CRC of the chunk just consumed. + if (source.ReadAtLeast(temp[..4], 4, throwOnEndOfStream: false) < 4) + { + return false; + } + + // Read the next chunk header; continue only while it is another IDAT. + if (source.ReadAtLeast(temp, temp.Length, throwOnEndOfStream: false) < temp.Length) + { + return false; + } + + var length = ((uint)temp[0] << 24) | ((uint)temp[1] << 16) | ((uint)temp[2] << 8) | temp[3]; + var type = ((uint)temp[4] << 24) | ((uint)temp[5] << 16) | ((uint)temp[6] << 8) | temp[7]; + if (type != idatType || length > int.MaxValue) + { + return false; + } + + chunkRemaining = (int)length; + return true; + } + + public override bool CanRead => true; + public override bool CanSeek => false; + public override bool CanWrite => false; + public override long Length => throw new NotSupportedException(); + public override long Position { get => throw new NotSupportedException(); set => throw new NotSupportedException(); } + public override void Flush() => throw new NotSupportedException(); + public override long Seek(long offset, SeekOrigin origin) => throw new NotSupportedException(); + public override void SetLength(long value) => throw new NotSupportedException(); + public override void Write(byte[] buffer, int offset, int count) => throw new NotSupportedException(); + } +} diff --git a/src/Verify/Compare/Png/PngSsimComparer.cs b/src/Verify/Compare/Png/PngSsimComparer.cs index 1630c67a0..a2d38ce61 100644 --- a/src/Verify/Compare/Png/PngSsimComparer.cs +++ b/src/Verify/Compare/Png/PngSsimComparer.cs @@ -10,17 +10,14 @@ internal static StreamCompare BuildCompare(double threshold) => internal static Task Compare(Stream received, Stream verified, double threshold) { - var receivedImage = PngDecoder.Decode(received); - var verifiedImage = PngDecoder.Decode(verified); - - if (receivedImage.Width != verifiedImage.Width || - receivedImage.Height != verifiedImage.Height) + // Streams both images a band at a time; dimensions come from the headers, so a size + // mismatch is reported without decoding pixels and without materializing full images. + if (!Ssim.TryCompare(received, verified, out var score, out var receivedWidth, out var receivedHeight, out var verifiedWidth, out var verifiedHeight)) { return Task.FromResult(CompareResult.NotEqual( - $"PNG dimensions differ. Received: {receivedImage.Width}x{receivedImage.Height}, Verified: {verifiedImage.Width}x{verifiedImage.Height}")); + $"PNG dimensions differ. Received: {receivedWidth}x{receivedHeight}, Verified: {verifiedWidth}x{verifiedHeight}")); } - var score = Ssim.Compare(receivedImage, verifiedImage); if (score >= threshold) { return Task.FromResult(CompareResult.Equal); diff --git a/src/Verify/Compare/Png/Ssim.cs b/src/Verify/Compare/Png/Ssim.cs index d9870e329..6b3f31058 100644 --- a/src/Verify/Compare/Png/Ssim.cs +++ b/src/Verify/Compare/Png/Ssim.cs @@ -9,12 +9,100 @@ public static class Ssim const float c1 = k1 * l * k1 * l; const float c2 = k2 * l * k2 * l; - public static double Compare(Stream a, Stream b) => - Compare(PngDecoder.Decode(a), PngDecoder.Decode(b)); + // Streams both PNGs a band of rows at a time rather than decoding two full images, so peak + // memory is a handful of rows per image instead of the whole RGBA buffer. Bit-identical to + // decoding both and calling Compare(PngImage, PngImage). + public static double Compare(Stream a, Stream b) + { + if (TryCompare(a, b, out var score, out var aWidth, out var aHeight, out var bWidth, out var bHeight)) + { + return score; + } + + throw new ArgumentException($"Image dimensions must match. a: {aWidth}x{aHeight}, b: {bWidth}x{bHeight}."); + } public static double Compare(byte[] a, byte[] b) => Compare(new MemoryStream(a), new MemoryStream(b)); + // Returns false (without computing a score) when the two images differ in size, so callers that + // treat a dimension mismatch as a distinct outcome do not pay for a throw. Dimensions come from + // the PNG headers, so a mismatch is detected before any pixel data is decoded. + internal static bool TryCompare(Stream a, Stream b, out double score, out int aWidth, out int aHeight, out int bWidth, out int bHeight) + { + using var readerA = new PngReader(a); + using var readerB = new PngReader(b); + aWidth = readerA.Width; + aHeight = readerA.Height; + bWidth = readerB.Width; + bHeight = readerB.Height; + + if (aWidth != bWidth || aHeight != bHeight) + { + score = 0; + return false; + } + + score = ComputeStreaming(readerA, readerB, aWidth, aHeight); + return true; + } + + static double ComputeStreaming(PngReader a, PngReader b, int width, int height) + { + var pool = ArrayPool.Shared; + var rowBytes = width * 4; + + if (width < windowSize || height < windowSize) + { + var wholeA = pool.Rent(rowBytes * height); + var wholeB = pool.Rent(rowBytes * height); + try + { + for (var y = 0; y < height; y++) + { + a.ReadRgbaRow(wholeA.AsSpan(y * rowBytes, rowBytes)); + b.ReadRgbaRow(wholeB.AsSpan(y * rowBytes, rowBytes)); + } + + return WindowSsim(wholeA, wholeB, 0, 0, width, height, width); + } + finally + { + pool.Return(wholeA); + pool.Return(wholeB); + } + } + + var bandA = pool.Rent(rowBytes * windowSize); + var bandB = pool.Rent(rowBytes * windowSize); + try + { + double sum = 0; + var count = 0; + for (var y = 0; y <= height - windowSize; y += windowSize) + { + for (var row = 0; row < windowSize; row++) + { + a.ReadRgbaRow(bandA.AsSpan(row * rowBytes, rowBytes)); + b.ReadRgbaRow(bandB.AsSpan(row * rowBytes, rowBytes)); + } + + for (var x = 0; x <= width - windowSize; x += windowSize) + { + sum += WindowSsim(bandA, bandB, x, 0, windowSize, windowSize, width); + count++; + } + } + + return count == 0 ? 1 : sum / count; + } + finally + { + pool.Return(bandA); + pool.Return(bandB); + } + } + public static double Compare(PngImage a, PngImage b) { if (a.Width != b.Width || From 2976dcd3d049120c242dc757c0ccffea32001d19 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 18 Jul 2026 08:42:52 +0000 Subject: [PATCH 3/3] Docs changes --- docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md | 4 ++-- docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md | 4 ++-- docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md | 4 ++-- docs/wiz/Linux_Other_Gui_Expecto_None.md | 4 ++-- docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md | 2 +- docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md | 2 +- docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md | 2 +- docs/wiz/Linux_Other_Gui_Fixie_None.md | 2 +- docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md | 8 ++++---- docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md | 8 ++++---- docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md | 8 ++++---- docs/wiz/Linux_Other_Gui_MSTest_None.md | 8 ++++---- docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md | 4 ++-- docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md | 4 ++-- docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md | 4 ++-- docs/wiz/Linux_Other_Gui_NUnit_None.md | 4 ++-- docs/wiz/Linux_Other_Gui_TUnit_AppVeyor.md | 4 ++-- docs/wiz/Linux_Other_Gui_TUnit_AzureDevOps.md | 4 ++-- docs/wiz/Linux_Other_Gui_TUnit_GitHubActions.md | 4 ++-- docs/wiz/Linux_Other_Gui_TUnit_None.md | 4 ++-- docs/wiz/Linux_Other_Gui_XunitV3_AppVeyor.md | 4 ++-- docs/wiz/Linux_Other_Gui_XunitV3_AzureDevOps.md | 4 ++-- docs/wiz/Linux_Other_Gui_XunitV3_GitHubActions.md | 4 ++-- docs/wiz/Linux_Other_Gui_XunitV3_None.md | 4 ++-- docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md | 4 ++-- docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md | 4 ++-- docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md | 4 ++-- docs/wiz/Linux_Rider_Gui_Expecto_None.md | 4 ++-- docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md | 2 +- docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md | 2 +- docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md | 2 +- docs/wiz/Linux_Rider_Gui_Fixie_None.md | 2 +- docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md | 8 ++++---- docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md | 8 ++++---- docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md | 8 ++++---- docs/wiz/Linux_Rider_Gui_MSTest_None.md | 8 ++++---- docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md | 4 ++-- docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md | 4 ++-- docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md | 4 ++-- docs/wiz/Linux_Rider_Gui_NUnit_None.md | 4 ++-- docs/wiz/Linux_Rider_Gui_TUnit_AppVeyor.md | 4 ++-- docs/wiz/Linux_Rider_Gui_TUnit_AzureDevOps.md | 4 ++-- docs/wiz/Linux_Rider_Gui_TUnit_GitHubActions.md | 4 ++-- docs/wiz/Linux_Rider_Gui_TUnit_None.md | 4 ++-- docs/wiz/Linux_Rider_Gui_XunitV3_AppVeyor.md | 4 ++-- docs/wiz/Linux_Rider_Gui_XunitV3_AzureDevOps.md | 4 ++-- docs/wiz/Linux_Rider_Gui_XunitV3_GitHubActions.md | 4 ++-- docs/wiz/Linux_Rider_Gui_XunitV3_None.md | 4 ++-- docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md | 4 ++-- docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md | 4 ++-- docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md | 4 ++-- docs/wiz/MacOS_Other_Gui_Expecto_None.md | 4 ++-- docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md | 2 +- docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md | 2 +- docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md | 2 +- docs/wiz/MacOS_Other_Gui_Fixie_None.md | 2 +- docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md | 8 ++++---- docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md | 8 ++++---- docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md | 8 ++++---- docs/wiz/MacOS_Other_Gui_MSTest_None.md | 8 ++++---- docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md | 4 ++-- docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md | 4 ++-- docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md | 4 ++-- docs/wiz/MacOS_Other_Gui_NUnit_None.md | 4 ++-- docs/wiz/MacOS_Other_Gui_TUnit_AppVeyor.md | 4 ++-- docs/wiz/MacOS_Other_Gui_TUnit_AzureDevOps.md | 4 ++-- docs/wiz/MacOS_Other_Gui_TUnit_GitHubActions.md | 4 ++-- docs/wiz/MacOS_Other_Gui_TUnit_None.md | 4 ++-- docs/wiz/MacOS_Other_Gui_XunitV3_AppVeyor.md | 4 ++-- docs/wiz/MacOS_Other_Gui_XunitV3_AzureDevOps.md | 4 ++-- docs/wiz/MacOS_Other_Gui_XunitV3_GitHubActions.md | 4 ++-- docs/wiz/MacOS_Other_Gui_XunitV3_None.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_Expecto_None.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md | 2 +- docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md | 2 +- docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md | 2 +- docs/wiz/MacOS_Rider_Gui_Fixie_None.md | 2 +- docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md | 8 ++++---- docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md | 8 ++++---- docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md | 8 ++++---- docs/wiz/MacOS_Rider_Gui_MSTest_None.md | 8 ++++---- docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_NUnit_None.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_TUnit_AppVeyor.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_TUnit_AzureDevOps.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_TUnit_GitHubActions.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_TUnit_None.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_XunitV3_AppVeyor.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_XunitV3_AzureDevOps.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_XunitV3_GitHubActions.md | 4 ++-- docs/wiz/MacOS_Rider_Gui_XunitV3_None.md | 4 ++-- docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md | 4 ++-- docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md | 4 ++-- docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md | 4 ++-- docs/wiz/Windows_Other_Gui_Expecto_None.md | 4 ++-- docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md | 2 +- docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md | 2 +- docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md | 2 +- docs/wiz/Windows_Other_Gui_Fixie_None.md | 2 +- docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md | 8 ++++---- docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md | 8 ++++---- docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md | 8 ++++---- docs/wiz/Windows_Other_Gui_MSTest_None.md | 8 ++++---- docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md | 4 ++-- docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md | 4 ++-- docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md | 4 ++-- docs/wiz/Windows_Other_Gui_NUnit_None.md | 4 ++-- docs/wiz/Windows_Other_Gui_TUnit_AppVeyor.md | 4 ++-- docs/wiz/Windows_Other_Gui_TUnit_AzureDevOps.md | 4 ++-- docs/wiz/Windows_Other_Gui_TUnit_GitHubActions.md | 4 ++-- docs/wiz/Windows_Other_Gui_TUnit_None.md | 4 ++-- docs/wiz/Windows_Other_Gui_XunitV3_AppVeyor.md | 4 ++-- docs/wiz/Windows_Other_Gui_XunitV3_AzureDevOps.md | 4 ++-- docs/wiz/Windows_Other_Gui_XunitV3_GitHubActions.md | 4 ++-- docs/wiz/Windows_Other_Gui_XunitV3_None.md | 4 ++-- docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md | 4 ++-- docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md | 4 ++-- docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md | 4 ++-- docs/wiz/Windows_Rider_Gui_Expecto_None.md | 4 ++-- docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md | 2 +- docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md | 2 +- docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md | 2 +- docs/wiz/Windows_Rider_Gui_Fixie_None.md | 2 +- docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md | 8 ++++---- docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md | 8 ++++---- docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md | 8 ++++---- docs/wiz/Windows_Rider_Gui_MSTest_None.md | 8 ++++---- docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md | 4 ++-- docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md | 4 ++-- docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md | 4 ++-- docs/wiz/Windows_Rider_Gui_NUnit_None.md | 4 ++-- docs/wiz/Windows_Rider_Gui_TUnit_AppVeyor.md | 4 ++-- docs/wiz/Windows_Rider_Gui_TUnit_AzureDevOps.md | 4 ++-- docs/wiz/Windows_Rider_Gui_TUnit_GitHubActions.md | 4 ++-- docs/wiz/Windows_Rider_Gui_TUnit_None.md | 4 ++-- docs/wiz/Windows_Rider_Gui_XunitV3_AppVeyor.md | 4 ++-- docs/wiz/Windows_Rider_Gui_XunitV3_AzureDevOps.md | 4 ++-- docs/wiz/Windows_Rider_Gui_XunitV3_GitHubActions.md | 4 ++-- docs/wiz/Windows_Rider_Gui_XunitV3_None.md | 4 ++-- ...dows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md | 4 ++-- ...s_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md | 4 ++-- ...VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md | 4 ++-- .../Windows_VisualStudioWithReSharper_Gui_Expecto_None.md | 4 ++-- ...indows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md | 2 +- ...ows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md | 2 +- ...s_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md | 2 +- .../Windows_VisualStudioWithReSharper_Gui_Fixie_None.md | 2 +- ...ndows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md | 8 ++++---- ...ws_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md | 8 ++++---- ..._VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md | 8 ++++---- .../Windows_VisualStudioWithReSharper_Gui_MSTest_None.md | 8 ++++---- ...indows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md | 4 ++-- ...ows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md | 4 ++-- ...s_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md | 4 ++-- .../Windows_VisualStudioWithReSharper_Gui_NUnit_None.md | 4 ++-- ...indows_VisualStudioWithReSharper_Gui_TUnit_AppVeyor.md | 4 ++-- ...ows_VisualStudioWithReSharper_Gui_TUnit_AzureDevOps.md | 4 ++-- ...s_VisualStudioWithReSharper_Gui_TUnit_GitHubActions.md | 4 ++-- .../Windows_VisualStudioWithReSharper_Gui_TUnit_None.md | 4 ++-- ...dows_VisualStudioWithReSharper_Gui_XunitV3_AppVeyor.md | 4 ++-- ...s_VisualStudioWithReSharper_Gui_XunitV3_AzureDevOps.md | 4 ++-- ...VisualStudioWithReSharper_Gui_XunitV3_GitHubActions.md | 4 ++-- .../Windows_VisualStudioWithReSharper_Gui_XunitV3_None.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md | 4 ++-- .../wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md | 2 +- docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md | 2 +- docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md | 2 +- docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md | 2 +- docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md | 8 ++++---- docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md | 8 ++++---- docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md | 8 ++++---- docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md | 8 ++++---- docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_TUnit_AppVeyor.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_TUnit_AzureDevOps.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_TUnit_GitHubActions.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_TUnit_None.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_XunitV3_AppVeyor.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_XunitV3_AzureDevOps.md | 4 ++-- .../wiz/Windows_VisualStudio_Gui_XunitV3_GitHubActions.md | 4 ++-- docs/wiz/Windows_VisualStudio_Gui_XunitV3_None.md | 4 ++-- 192 files changed, 416 insertions(+), 416 deletions(-) diff --git a/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md index 4d46bbdbf..968a31250 100644 --- a/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Linux_Other_Gui_Expecto_AppVeyor.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md index 406812a24..9c5087f87 100644 --- a/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Gui_Expecto_AzureDevOps.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md index 88f30b560..74473798c 100644 --- a/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/Linux_Other_Gui_Expecto_GitHubActions.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_Expecto_None.md b/docs/wiz/Linux_Other_Gui_Expecto_None.md index 4418c9fbc..351a80a30 100644 --- a/docs/wiz/Linux_Other_Gui_Expecto_None.md +++ b/docs/wiz/Linux_Other_Gui_Expecto_None.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md b/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md index 3baa1614f..af7100b89 100644 --- a/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md +++ b/docs/wiz/Linux_Other_Gui_Fixie_AppVeyor.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md index 46f68eb67..d4962a62c 100644 --- a/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Gui_Fixie_AzureDevOps.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md b/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md index 28046b872..ed9acdc3e 100644 --- a/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md +++ b/docs/wiz/Linux_Other_Gui_Fixie_GitHubActions.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_Fixie_None.md b/docs/wiz/Linux_Other_Gui_Fixie_None.md index 22f492063..5e59986a8 100644 --- a/docs/wiz/Linux_Other_Gui_Fixie_None.md +++ b/docs/wiz/Linux_Other_Gui_Fixie_None.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md index 3c642c444..e43f43876 100644 --- a/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/Linux_Other_Gui_MSTest_AppVeyor.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md index 1a3dda5ed..67f97148f 100644 --- a/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Gui_MSTest_AzureDevOps.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md index 150e94a2e..22fa1a2b4 100644 --- a/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/Linux_Other_Gui_MSTest_GitHubActions.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_MSTest_None.md b/docs/wiz/Linux_Other_Gui_MSTest_None.md index 5d31c2919..de2d17a86 100644 --- a/docs/wiz/Linux_Other_Gui_MSTest_None.md +++ b/docs/wiz/Linux_Other_Gui_MSTest_None.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md index f2bfb2c3e..63eb2a642 100644 --- a/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/Linux_Other_Gui_NUnit_AppVeyor.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md index c8d3404e7..0c18206e5 100644 --- a/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Gui_NUnit_AzureDevOps.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md index 27788c028..f6ac9e8fa 100644 --- a/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/Linux_Other_Gui_NUnit_GitHubActions.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_NUnit_None.md b/docs/wiz/Linux_Other_Gui_NUnit_None.md index a75c9357b..f86ec351a 100644 --- a/docs/wiz/Linux_Other_Gui_NUnit_None.md +++ b/docs/wiz/Linux_Other_Gui_NUnit_None.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_TUnit_AppVeyor.md b/docs/wiz/Linux_Other_Gui_TUnit_AppVeyor.md index 8ad0101c3..7b39d0c4a 100644 --- a/docs/wiz/Linux_Other_Gui_TUnit_AppVeyor.md +++ b/docs/wiz/Linux_Other_Gui_TUnit_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_TUnit_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_TUnit_AzureDevOps.md index 5aeb95f07..f249fd35a 100644 --- a/docs/wiz/Linux_Other_Gui_TUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Gui_TUnit_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_TUnit_GitHubActions.md b/docs/wiz/Linux_Other_Gui_TUnit_GitHubActions.md index ce3fb0dbf..e40c6c889 100644 --- a/docs/wiz/Linux_Other_Gui_TUnit_GitHubActions.md +++ b/docs/wiz/Linux_Other_Gui_TUnit_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_TUnit_None.md b/docs/wiz/Linux_Other_Gui_TUnit_None.md index 36459380c..7c9677c0b 100644 --- a/docs/wiz/Linux_Other_Gui_TUnit_None.md +++ b/docs/wiz/Linux_Other_Gui_TUnit_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_XunitV3_AppVeyor.md b/docs/wiz/Linux_Other_Gui_XunitV3_AppVeyor.md index 9aebc24eb..07885fcf7 100644 --- a/docs/wiz/Linux_Other_Gui_XunitV3_AppVeyor.md +++ b/docs/wiz/Linux_Other_Gui_XunitV3_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Linux_Other_Gui_XunitV3_AzureDevOps.md index eec6c272d..82195740c 100644 --- a/docs/wiz/Linux_Other_Gui_XunitV3_AzureDevOps.md +++ b/docs/wiz/Linux_Other_Gui_XunitV3_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_XunitV3_GitHubActions.md b/docs/wiz/Linux_Other_Gui_XunitV3_GitHubActions.md index 1c7e15e66..53d817bef 100644 --- a/docs/wiz/Linux_Other_Gui_XunitV3_GitHubActions.md +++ b/docs/wiz/Linux_Other_Gui_XunitV3_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Other_Gui_XunitV3_None.md b/docs/wiz/Linux_Other_Gui_XunitV3_None.md index cc6e266a6..15be8cdb9 100644 --- a/docs/wiz/Linux_Other_Gui_XunitV3_None.md +++ b/docs/wiz/Linux_Other_Gui_XunitV3_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md index 0c4681ba2..b3608a466 100644 --- a/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Gui_Expecto_AppVeyor.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md index aabc3eaff..76204a78a 100644 --- a/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Gui_Expecto_AzureDevOps.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md index a90b920cf..e3e3289e1 100644 --- a/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Gui_Expecto_GitHubActions.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_Expecto_None.md b/docs/wiz/Linux_Rider_Gui_Expecto_None.md index 24bf4c4ac..0deb3bc45 100644 --- a/docs/wiz/Linux_Rider_Gui_Expecto_None.md +++ b/docs/wiz/Linux_Rider_Gui_Expecto_None.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md index 9e2191f28..553b0c1c2 100644 --- a/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Gui_Fixie_AppVeyor.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md index 5e1aecb4a..90095660f 100644 --- a/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Gui_Fixie_AzureDevOps.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md index 92847702d..a57e377e4 100644 --- a/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Gui_Fixie_GitHubActions.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_Fixie_None.md b/docs/wiz/Linux_Rider_Gui_Fixie_None.md index 6849fec7d..6087a8ac8 100644 --- a/docs/wiz/Linux_Rider_Gui_Fixie_None.md +++ b/docs/wiz/Linux_Rider_Gui_Fixie_None.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md index a47bb1c90..b06a36e1f 100644 --- a/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Gui_MSTest_AppVeyor.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md index 43a4538bc..1bb5cbf37 100644 --- a/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Gui_MSTest_AzureDevOps.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md index 2f32d9662..8abfe527f 100644 --- a/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Gui_MSTest_GitHubActions.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_MSTest_None.md b/docs/wiz/Linux_Rider_Gui_MSTest_None.md index 5939f7b14..be59a8a8a 100644 --- a/docs/wiz/Linux_Rider_Gui_MSTest_None.md +++ b/docs/wiz/Linux_Rider_Gui_MSTest_None.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md index d9076437a..ef1676868 100644 --- a/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Gui_NUnit_AppVeyor.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md index 0aa6d7466..3113e2f71 100644 --- a/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Gui_NUnit_AzureDevOps.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md index 1efd6a308..bda9fc3ed 100644 --- a/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Gui_NUnit_GitHubActions.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_NUnit_None.md b/docs/wiz/Linux_Rider_Gui_NUnit_None.md index af408634e..ec6980ffb 100644 --- a/docs/wiz/Linux_Rider_Gui_NUnit_None.md +++ b/docs/wiz/Linux_Rider_Gui_NUnit_None.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_TUnit_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_TUnit_AppVeyor.md index 2cdaef374..8fc790eb7 100644 --- a/docs/wiz/Linux_Rider_Gui_TUnit_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Gui_TUnit_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_TUnit_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_TUnit_AzureDevOps.md index 0a3f2f307..3df25f49a 100644 --- a/docs/wiz/Linux_Rider_Gui_TUnit_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Gui_TUnit_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_TUnit_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_TUnit_GitHubActions.md index 05a57679b..54cdf61dd 100644 --- a/docs/wiz/Linux_Rider_Gui_TUnit_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Gui_TUnit_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_TUnit_None.md b/docs/wiz/Linux_Rider_Gui_TUnit_None.md index 6ad43b887..555ffc69e 100644 --- a/docs/wiz/Linux_Rider_Gui_TUnit_None.md +++ b/docs/wiz/Linux_Rider_Gui_TUnit_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_XunitV3_AppVeyor.md b/docs/wiz/Linux_Rider_Gui_XunitV3_AppVeyor.md index c74059e3e..3d469b2f6 100644 --- a/docs/wiz/Linux_Rider_Gui_XunitV3_AppVeyor.md +++ b/docs/wiz/Linux_Rider_Gui_XunitV3_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Linux_Rider_Gui_XunitV3_AzureDevOps.md index 4e6524983..061bac916 100644 --- a/docs/wiz/Linux_Rider_Gui_XunitV3_AzureDevOps.md +++ b/docs/wiz/Linux_Rider_Gui_XunitV3_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_XunitV3_GitHubActions.md b/docs/wiz/Linux_Rider_Gui_XunitV3_GitHubActions.md index 3b9d02660..ee16e6adb 100644 --- a/docs/wiz/Linux_Rider_Gui_XunitV3_GitHubActions.md +++ b/docs/wiz/Linux_Rider_Gui_XunitV3_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Linux_Rider_Gui_XunitV3_None.md b/docs/wiz/Linux_Rider_Gui_XunitV3_None.md index 07146599c..fc661ff59 100644 --- a/docs/wiz/Linux_Rider_Gui_XunitV3_None.md +++ b/docs/wiz/Linux_Rider_Gui_XunitV3_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md index 2cf281b81..b2b398254 100644 --- a/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Gui_Expecto_AppVeyor.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md index 7dedc7e10..4ad53f88f 100644 --- a/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Gui_Expecto_AzureDevOps.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md index 2a037d003..5e10e27f3 100644 --- a/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Gui_Expecto_GitHubActions.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_Expecto_None.md b/docs/wiz/MacOS_Other_Gui_Expecto_None.md index 31c16dc07..e8577ff82 100644 --- a/docs/wiz/MacOS_Other_Gui_Expecto_None.md +++ b/docs/wiz/MacOS_Other_Gui_Expecto_None.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md index cd1a7fa00..e55fb286c 100644 --- a/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Gui_Fixie_AppVeyor.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md index 89cefdd78..0a39110f1 100644 --- a/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Gui_Fixie_AzureDevOps.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md index 139ff299a..3d532a1ac 100644 --- a/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Gui_Fixie_GitHubActions.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_Fixie_None.md b/docs/wiz/MacOS_Other_Gui_Fixie_None.md index 8f72a5b68..5112e15b7 100644 --- a/docs/wiz/MacOS_Other_Gui_Fixie_None.md +++ b/docs/wiz/MacOS_Other_Gui_Fixie_None.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md index 39ae19495..697ed66fd 100644 --- a/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Gui_MSTest_AppVeyor.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md index a386d36bc..f5a15c20c 100644 --- a/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Gui_MSTest_AzureDevOps.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md index d63b76ea0..0142c6020 100644 --- a/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Gui_MSTest_GitHubActions.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_MSTest_None.md b/docs/wiz/MacOS_Other_Gui_MSTest_None.md index 132581c7a..0ea26387b 100644 --- a/docs/wiz/MacOS_Other_Gui_MSTest_None.md +++ b/docs/wiz/MacOS_Other_Gui_MSTest_None.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md index 2cdc891b1..710cebd36 100644 --- a/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Gui_NUnit_AppVeyor.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md index 74b6dd381..a459be621 100644 --- a/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Gui_NUnit_AzureDevOps.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md index 7d708e8df..1d306aea4 100644 --- a/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Gui_NUnit_GitHubActions.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_NUnit_None.md b/docs/wiz/MacOS_Other_Gui_NUnit_None.md index 9f0bba544..26dd11212 100644 --- a/docs/wiz/MacOS_Other_Gui_NUnit_None.md +++ b/docs/wiz/MacOS_Other_Gui_NUnit_None.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_TUnit_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_TUnit_AppVeyor.md index e1ac99974..7b1c5fd33 100644 --- a/docs/wiz/MacOS_Other_Gui_TUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Gui_TUnit_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_TUnit_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_TUnit_AzureDevOps.md index f4d2a6e64..8c79f1834 100644 --- a/docs/wiz/MacOS_Other_Gui_TUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Gui_TUnit_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_TUnit_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_TUnit_GitHubActions.md index 35f743c68..36ec9432e 100644 --- a/docs/wiz/MacOS_Other_Gui_TUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Gui_TUnit_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_TUnit_None.md b/docs/wiz/MacOS_Other_Gui_TUnit_None.md index 258be2e2c..42020908a 100644 --- a/docs/wiz/MacOS_Other_Gui_TUnit_None.md +++ b/docs/wiz/MacOS_Other_Gui_TUnit_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_XunitV3_AppVeyor.md b/docs/wiz/MacOS_Other_Gui_XunitV3_AppVeyor.md index 56ff88232..8db6b702d 100644 --- a/docs/wiz/MacOS_Other_Gui_XunitV3_AppVeyor.md +++ b/docs/wiz/MacOS_Other_Gui_XunitV3_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_XunitV3_AzureDevOps.md b/docs/wiz/MacOS_Other_Gui_XunitV3_AzureDevOps.md index 7cb1ad621..f91a2e5ef 100644 --- a/docs/wiz/MacOS_Other_Gui_XunitV3_AzureDevOps.md +++ b/docs/wiz/MacOS_Other_Gui_XunitV3_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_XunitV3_GitHubActions.md b/docs/wiz/MacOS_Other_Gui_XunitV3_GitHubActions.md index 2353a06fb..4aa2f0827 100644 --- a/docs/wiz/MacOS_Other_Gui_XunitV3_GitHubActions.md +++ b/docs/wiz/MacOS_Other_Gui_XunitV3_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Other_Gui_XunitV3_None.md b/docs/wiz/MacOS_Other_Gui_XunitV3_None.md index b28229b4d..d576c96e5 100644 --- a/docs/wiz/MacOS_Other_Gui_XunitV3_None.md +++ b/docs/wiz/MacOS_Other_Gui_XunitV3_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md index ba0217a1f..29a28168d 100644 --- a/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Gui_Expecto_AppVeyor.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md index fb03ddf20..bfc6c537d 100644 --- a/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Gui_Expecto_AzureDevOps.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md index 7c42f268e..7f4a6efaf 100644 --- a/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Gui_Expecto_GitHubActions.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_Expecto_None.md b/docs/wiz/MacOS_Rider_Gui_Expecto_None.md index 66f399791..bf1a49b14 100644 --- a/docs/wiz/MacOS_Rider_Gui_Expecto_None.md +++ b/docs/wiz/MacOS_Rider_Gui_Expecto_None.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md index 0b153cbfd..224d702bb 100644 --- a/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Gui_Fixie_AppVeyor.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md index 979d7a363..095c4c731 100644 --- a/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Gui_Fixie_AzureDevOps.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md index b2f995579..33bf40e20 100644 --- a/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Gui_Fixie_GitHubActions.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_Fixie_None.md b/docs/wiz/MacOS_Rider_Gui_Fixie_None.md index 21e146685..8e28edd50 100644 --- a/docs/wiz/MacOS_Rider_Gui_Fixie_None.md +++ b/docs/wiz/MacOS_Rider_Gui_Fixie_None.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md index 21bc1a8a9..9e8efb6b0 100644 --- a/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Gui_MSTest_AppVeyor.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md index 235adfcf2..4a7a6f354 100644 --- a/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Gui_MSTest_AzureDevOps.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md index e4bf38f38..2fd0544e8 100644 --- a/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Gui_MSTest_GitHubActions.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_MSTest_None.md b/docs/wiz/MacOS_Rider_Gui_MSTest_None.md index 668682c03..36a465a7b 100644 --- a/docs/wiz/MacOS_Rider_Gui_MSTest_None.md +++ b/docs/wiz/MacOS_Rider_Gui_MSTest_None.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md index 313951ebe..256a41e3a 100644 --- a/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Gui_NUnit_AppVeyor.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md index c1e7eb9fb..435b51460 100644 --- a/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Gui_NUnit_AzureDevOps.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md index 0b2e941b8..748eca894 100644 --- a/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Gui_NUnit_GitHubActions.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_NUnit_None.md b/docs/wiz/MacOS_Rider_Gui_NUnit_None.md index 0c026eb02..d3178cab5 100644 --- a/docs/wiz/MacOS_Rider_Gui_NUnit_None.md +++ b/docs/wiz/MacOS_Rider_Gui_NUnit_None.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_TUnit_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_TUnit_AppVeyor.md index 0116585b0..047f30dbc 100644 --- a/docs/wiz/MacOS_Rider_Gui_TUnit_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Gui_TUnit_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_TUnit_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_TUnit_AzureDevOps.md index 102e75c31..099b58c65 100644 --- a/docs/wiz/MacOS_Rider_Gui_TUnit_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Gui_TUnit_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_TUnit_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_TUnit_GitHubActions.md index 967962073..bb1887c09 100644 --- a/docs/wiz/MacOS_Rider_Gui_TUnit_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Gui_TUnit_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_TUnit_None.md b/docs/wiz/MacOS_Rider_Gui_TUnit_None.md index ffab82e47..89d3bbb6f 100644 --- a/docs/wiz/MacOS_Rider_Gui_TUnit_None.md +++ b/docs/wiz/MacOS_Rider_Gui_TUnit_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_XunitV3_AppVeyor.md b/docs/wiz/MacOS_Rider_Gui_XunitV3_AppVeyor.md index 05b43fcff..79224a2a3 100644 --- a/docs/wiz/MacOS_Rider_Gui_XunitV3_AppVeyor.md +++ b/docs/wiz/MacOS_Rider_Gui_XunitV3_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_XunitV3_AzureDevOps.md b/docs/wiz/MacOS_Rider_Gui_XunitV3_AzureDevOps.md index d35ce0e03..f241032d6 100644 --- a/docs/wiz/MacOS_Rider_Gui_XunitV3_AzureDevOps.md +++ b/docs/wiz/MacOS_Rider_Gui_XunitV3_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_XunitV3_GitHubActions.md b/docs/wiz/MacOS_Rider_Gui_XunitV3_GitHubActions.md index 31b381759..10e5c2d71 100644 --- a/docs/wiz/MacOS_Rider_Gui_XunitV3_GitHubActions.md +++ b/docs/wiz/MacOS_Rider_Gui_XunitV3_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/MacOS_Rider_Gui_XunitV3_None.md b/docs/wiz/MacOS_Rider_Gui_XunitV3_None.md index 62369dffe..e5b29085e 100644 --- a/docs/wiz/MacOS_Rider_Gui_XunitV3_None.md +++ b/docs/wiz/MacOS_Rider_Gui_XunitV3_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md index 388572898..6689a495e 100644 --- a/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Windows_Other_Gui_Expecto_AppVeyor.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md index 9dcda8b6a..c72a95ac6 100644 --- a/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Gui_Expecto_AzureDevOps.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md index 978af26ec..8e404b7df 100644 --- a/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/Windows_Other_Gui_Expecto_GitHubActions.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_Expecto_None.md b/docs/wiz/Windows_Other_Gui_Expecto_None.md index 8d272956d..b12aa7bed 100644 --- a/docs/wiz/Windows_Other_Gui_Expecto_None.md +++ b/docs/wiz/Windows_Other_Gui_Expecto_None.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md index 7473a2ccb..9a5c2b448 100644 --- a/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md +++ b/docs/wiz/Windows_Other_Gui_Fixie_AppVeyor.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md index a69fe9589..0da15c5d4 100644 --- a/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Gui_Fixie_AzureDevOps.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md index 25a44bbf8..9609d9239 100644 --- a/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md +++ b/docs/wiz/Windows_Other_Gui_Fixie_GitHubActions.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_Fixie_None.md b/docs/wiz/Windows_Other_Gui_Fixie_None.md index 61713dccd..c53803219 100644 --- a/docs/wiz/Windows_Other_Gui_Fixie_None.md +++ b/docs/wiz/Windows_Other_Gui_Fixie_None.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md index 895f2c1f2..17e879fb3 100644 --- a/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/Windows_Other_Gui_MSTest_AppVeyor.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md index a58313093..405f7d8dc 100644 --- a/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Gui_MSTest_AzureDevOps.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md index a08994957..4889952ce 100644 --- a/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/Windows_Other_Gui_MSTest_GitHubActions.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_MSTest_None.md b/docs/wiz/Windows_Other_Gui_MSTest_None.md index 30cd65c75..c7e41925f 100644 --- a/docs/wiz/Windows_Other_Gui_MSTest_None.md +++ b/docs/wiz/Windows_Other_Gui_MSTest_None.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md index 818e400ab..69b10c69d 100644 --- a/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/Windows_Other_Gui_NUnit_AppVeyor.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md index a893fc376..5927f28c9 100644 --- a/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Gui_NUnit_AzureDevOps.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md index e079ce2dc..e6917f20b 100644 --- a/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/Windows_Other_Gui_NUnit_GitHubActions.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_NUnit_None.md b/docs/wiz/Windows_Other_Gui_NUnit_None.md index 2ad4664be..6497ce1fc 100644 --- a/docs/wiz/Windows_Other_Gui_NUnit_None.md +++ b/docs/wiz/Windows_Other_Gui_NUnit_None.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_TUnit_AppVeyor.md b/docs/wiz/Windows_Other_Gui_TUnit_AppVeyor.md index 0ad20b824..ec56a3625 100644 --- a/docs/wiz/Windows_Other_Gui_TUnit_AppVeyor.md +++ b/docs/wiz/Windows_Other_Gui_TUnit_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_TUnit_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_TUnit_AzureDevOps.md index f59b6fd76..89b6e17a7 100644 --- a/docs/wiz/Windows_Other_Gui_TUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Gui_TUnit_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_TUnit_GitHubActions.md b/docs/wiz/Windows_Other_Gui_TUnit_GitHubActions.md index cf75a6953..df8a582c6 100644 --- a/docs/wiz/Windows_Other_Gui_TUnit_GitHubActions.md +++ b/docs/wiz/Windows_Other_Gui_TUnit_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_TUnit_None.md b/docs/wiz/Windows_Other_Gui_TUnit_None.md index 1a4c312a1..4b7bf47b9 100644 --- a/docs/wiz/Windows_Other_Gui_TUnit_None.md +++ b/docs/wiz/Windows_Other_Gui_TUnit_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_XunitV3_AppVeyor.md b/docs/wiz/Windows_Other_Gui_XunitV3_AppVeyor.md index d7c204f98..126da58ef 100644 --- a/docs/wiz/Windows_Other_Gui_XunitV3_AppVeyor.md +++ b/docs/wiz/Windows_Other_Gui_XunitV3_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Windows_Other_Gui_XunitV3_AzureDevOps.md index 6c4218fc0..fbcbe1fdf 100644 --- a/docs/wiz/Windows_Other_Gui_XunitV3_AzureDevOps.md +++ b/docs/wiz/Windows_Other_Gui_XunitV3_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_XunitV3_GitHubActions.md b/docs/wiz/Windows_Other_Gui_XunitV3_GitHubActions.md index 10feac154..e575846d5 100644 --- a/docs/wiz/Windows_Other_Gui_XunitV3_GitHubActions.md +++ b/docs/wiz/Windows_Other_Gui_XunitV3_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Other_Gui_XunitV3_None.md b/docs/wiz/Windows_Other_Gui_XunitV3_None.md index ca4b22997..692ff40e3 100644 --- a/docs/wiz/Windows_Other_Gui_XunitV3_None.md +++ b/docs/wiz/Windows_Other_Gui_XunitV3_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md index b66beeb9e..be2fbe58e 100644 --- a/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Gui_Expecto_AppVeyor.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md index be7aaaff6..1b87d3cd7 100644 --- a/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Gui_Expecto_AzureDevOps.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md index 60707f289..057b688eb 100644 --- a/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Gui_Expecto_GitHubActions.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_Expecto_None.md b/docs/wiz/Windows_Rider_Gui_Expecto_None.md index 132a2e235..dd36bbc06 100644 --- a/docs/wiz/Windows_Rider_Gui_Expecto_None.md +++ b/docs/wiz/Windows_Rider_Gui_Expecto_None.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md index 64a9f1ec5..8cff47270 100644 --- a/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Gui_Fixie_AppVeyor.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md index 133833b26..1701a6a00 100644 --- a/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Gui_Fixie_AzureDevOps.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md index 0ec4c5a18..29044f88f 100644 --- a/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Gui_Fixie_GitHubActions.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_Fixie_None.md b/docs/wiz/Windows_Rider_Gui_Fixie_None.md index c01ece790..bee76db0c 100644 --- a/docs/wiz/Windows_Rider_Gui_Fixie_None.md +++ b/docs/wiz/Windows_Rider_Gui_Fixie_None.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md index 16eb5b59d..3f54abbcd 100644 --- a/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Gui_MSTest_AppVeyor.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md index 7db30729b..14db55318 100644 --- a/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Gui_MSTest_AzureDevOps.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md index 2804005dc..0a76ea5e5 100644 --- a/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Gui_MSTest_GitHubActions.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_MSTest_None.md b/docs/wiz/Windows_Rider_Gui_MSTest_None.md index 3b75f80f3..63385ef9e 100644 --- a/docs/wiz/Windows_Rider_Gui_MSTest_None.md +++ b/docs/wiz/Windows_Rider_Gui_MSTest_None.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md index ca557636f..9e44d5243 100644 --- a/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Gui_NUnit_AppVeyor.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md index 65b869713..55aaaed94 100644 --- a/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Gui_NUnit_AzureDevOps.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md index a2036a23d..c03d1cc79 100644 --- a/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Gui_NUnit_GitHubActions.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_NUnit_None.md b/docs/wiz/Windows_Rider_Gui_NUnit_None.md index 1dd908ea6..2cb9ccb01 100644 --- a/docs/wiz/Windows_Rider_Gui_NUnit_None.md +++ b/docs/wiz/Windows_Rider_Gui_NUnit_None.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_TUnit_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_TUnit_AppVeyor.md index 9c595f368..6ecdba68d 100644 --- a/docs/wiz/Windows_Rider_Gui_TUnit_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Gui_TUnit_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_TUnit_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_TUnit_AzureDevOps.md index 4f0005d7c..8569be0ab 100644 --- a/docs/wiz/Windows_Rider_Gui_TUnit_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Gui_TUnit_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_TUnit_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_TUnit_GitHubActions.md index c38a50b62..f087d2af2 100644 --- a/docs/wiz/Windows_Rider_Gui_TUnit_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Gui_TUnit_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_TUnit_None.md b/docs/wiz/Windows_Rider_Gui_TUnit_None.md index 9ab64e51c..332e006eb 100644 --- a/docs/wiz/Windows_Rider_Gui_TUnit_None.md +++ b/docs/wiz/Windows_Rider_Gui_TUnit_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_XunitV3_AppVeyor.md b/docs/wiz/Windows_Rider_Gui_XunitV3_AppVeyor.md index c4745b2f7..56df3b3e2 100644 --- a/docs/wiz/Windows_Rider_Gui_XunitV3_AppVeyor.md +++ b/docs/wiz/Windows_Rider_Gui_XunitV3_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Windows_Rider_Gui_XunitV3_AzureDevOps.md index 0bb1bd86a..534d1ef15 100644 --- a/docs/wiz/Windows_Rider_Gui_XunitV3_AzureDevOps.md +++ b/docs/wiz/Windows_Rider_Gui_XunitV3_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_XunitV3_GitHubActions.md b/docs/wiz/Windows_Rider_Gui_XunitV3_GitHubActions.md index b3d108b8b..c9f87bc11 100644 --- a/docs/wiz/Windows_Rider_Gui_XunitV3_GitHubActions.md +++ b/docs/wiz/Windows_Rider_Gui_XunitV3_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_Rider_Gui_XunitV3_None.md b/docs/wiz/Windows_Rider_Gui_XunitV3_None.md index a584487e6..8413b2574 100644 --- a/docs/wiz/Windows_Rider_Gui_XunitV3_None.md +++ b/docs/wiz/Windows_Rider_Gui_XunitV3_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md index 1c2e9f38a..9f8ce8681 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AppVeyor.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md index d31084ea7..516f1c5fa 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_AzureDevOps.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md index 3672af13f..3ff8f711c 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_GitHubActions.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md index 11b571c23..0e88a0c5d 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Expecto_None.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md index 8bc3d673f..2ed89260d 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AppVeyor.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md index 340b511e4..d23ac8d48 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_AzureDevOps.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md index a37a7c759..24a959d30 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_GitHubActions.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md index 814bb05c5..afacea55f 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_Fixie_None.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md index 3710960dd..a5248026b 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AppVeyor.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md index aa4ce14d3..7e85f69bd 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_AzureDevOps.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md index e915b8ef7..7b970adf7 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_GitHubActions.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md index 6bf4eebbf..b6f251655 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_MSTest_None.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md index 906076b6c..69da2d6ae 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AppVeyor.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md index 34c8be9bc..387e9dcb1 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_AzureDevOps.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md index 743396b15..1c282ee07 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_GitHubActions.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md index 2e375e1ce..a2a192fb5 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_NUnit_None.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AppVeyor.md index d8b7bc7d1..00bddb9af 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AzureDevOps.md index a06b0ac0f..3e249eb53 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_GitHubActions.md index a1c1526c8..2f6abe87f 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_None.md index d720371b6..efd1abbb8 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_None.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_TUnit_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AppVeyor.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AppVeyor.md index 83c88605d..15615047b 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AzureDevOps.md index bdb9621fd..cafbf37c0 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_GitHubActions.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_GitHubActions.md index e1c90f7c8..dcd261bb7 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_None.md b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_None.md index 69c9157c3..e599f9c06 100644 --- a/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_None.md +++ b/docs/wiz/Windows_VisualStudioWithReSharper_Gui_XunitV3_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md index cedda9465..71c4f18fe 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AppVeyor.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md index 56733484c..67f991492 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_AzureDevOps.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md index 6716c6a0b..ada6be97d 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_GitHubActions.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md b/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md index 10f87d524..fe3003e53 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md +++ b/docs/wiz/Windows_VisualStudio_Gui_Expecto_None.md @@ -19,8 +19,8 @@ Add the following packages to the test project: ```fsproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md index c49ffe40a..813991d98 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AppVeyor.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md index 3aae4d7b5..f10e3ef59 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_AzureDevOps.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md index 075d9bdad..a2bd061f7 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_GitHubActions.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md b/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md index 08ea05ca3..b0326b08d 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md +++ b/docs/wiz/Windows_VisualStudio_Gui_Fixie_None.md @@ -18,7 +18,7 @@ Add the following packages to the test project: ```csproj - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md index 1ef3195f1..8d9ef21df 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AppVeyor.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md index 2bc182e17..1db0ca73a 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_AzureDevOps.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md index 24398aeb6..caa148ac7 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_GitHubActions.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md b/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md index d276b5350..2944c3b4a 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md +++ b/docs/wiz/Windows_VisualStudio_Gui_MSTest_None.md @@ -17,10 +17,10 @@ Add the following packages to the test project: ```csproj - - - - + + + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md index 071e068e3..d5f811ce7 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AppVeyor.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md index 3427e6f21..0003fc54b 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_AzureDevOps.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md index 7b333fdf9..e7e533204 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_GitHubActions.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md b/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md index 2a7d3b7a6..fea325513 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md +++ b/docs/wiz/Windows_VisualStudio_Gui_NUnit_None.md @@ -17,9 +17,9 @@ Add the following packages to the test project: ```csproj - + - + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_TUnit_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_TUnit_AppVeyor.md index 66f29e94e..54237663b 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_TUnit_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Gui_TUnit_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_TUnit_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_TUnit_AzureDevOps.md index 65e99790f..a2cc2e14d 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_TUnit_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudio_Gui_TUnit_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_TUnit_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_TUnit_GitHubActions.md index c48fe7b63..fd788b46b 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_TUnit_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudio_Gui_TUnit_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_TUnit_None.md b/docs/wiz/Windows_VisualStudio_Gui_TUnit_None.md index d7ac2aeb9..25e2940b3 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_TUnit_None.md +++ b/docs/wiz/Windows_VisualStudio_Gui_TUnit_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AppVeyor.md b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AppVeyor.md index 013b735ce..24bb61b1b 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AppVeyor.md +++ b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AppVeyor.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AzureDevOps.md b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AzureDevOps.md index d5f6a8d60..c4ddf1959 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AzureDevOps.md +++ b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_AzureDevOps.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_GitHubActions.md b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_GitHubActions.md index c6a9e9412..b7fdcc774 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_GitHubActions.md +++ b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_GitHubActions.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor diff --git a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_None.md b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_None.md index 571ad7304..932126e04 100644 --- a/docs/wiz/Windows_VisualStudio_Gui_XunitV3_None.md +++ b/docs/wiz/Windows_VisualStudio_Gui_XunitV3_None.md @@ -17,8 +17,8 @@ Add the following packages to the test project: ```csproj - - + + ``` snippet source | anchor