Skip to content

Commit b5e5786

Browse files
committed
🩹 Fix HashCode's framework versions
1 parent 5c7d4ec commit b5e5786

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Chasm.Utilities/Chasm.Utilities.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
netcoreapp2.1;
1010
netcoreapp1.0;
1111
netstandard2.1;
12-
netstandard2.0;
1312
netstandard1.0;
1413
net45;
1514
net35;
@@ -19,7 +18,7 @@
1918
|================|=================|=========|==============================
2019
| net8.0 | | | - latest API, for use in IDE
2120
| netcoreapp3.0 | netstandard2.1 | | - NotNullWhenAttribute
22-
| netcoreapp2.1 | netstandard2.0 | | - HashCode
21+
| netcoreapp2.1 | netstandard2.1 | | - HashCode
2322
| netcoreapp1.0 | netstandard1.0 | net45 | - MethodImplOptions.AggressiveInlining
2423
| netcoreapp1.0 | netstandard1.0 | net35 | - lowest supported API, Extension attribute
2524
-->

Chasm.Utilities/HashCodeExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_0_OR_GREATER
1+
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
22
using System;
33
using System.Collections.Generic;
44
using JetBrains.Annotations;

0 commit comments

Comments
 (0)