We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a51e81e commit 5674f8fCopy full SHA for 5674f8f
src/benchmarks/micro/libraries/System.IO.Compression/Zstandard.cs
@@ -6,6 +6,8 @@
6
using BenchmarkDotNet.Attributes;
7
using MicroBenchmarks;
8
9
+#if NET11_0_OR_GREATER
10
+
11
namespace System.IO.Compression
12
{
13
[BenchmarkCategory(Categories.Libraries, Categories.NoWASM)]
@@ -70,3 +72,5 @@ private static int GetQuality(CompressionLevel compressLevel)
70
72
=> compressLevel == CompressionLevel.Optimal ? 11 : compressLevel == CompressionLevel.Fastest ? 1 : 0;
71
73
}
74
75
76
+#endif
0 commit comments