diff --git a/client/data/Methods/Hardware.cs b/client/data/Methods/Hardware.cs index 6bc19e7..73a1d56 100644 --- a/client/data/Methods/Hardware.cs +++ b/client/data/Methods/Hardware.cs @@ -1212,7 +1212,7 @@ private unsafe static SmartAttribute MakeNvmeAttribute(byte* attr, byte id, stri byte[] attrReversedArray = attrSpan.ToArray(); // byte[].Reverse() returns and IEnumerable which must be further casted into an array, leaving us with a big endian byte array. - var attrArray = attrReversedArray.Reverse().ToArray(); + var attrArray = Enumerable.Reverse(attrReversedArray).ToArray(); // Convert the byte array to a string and remove the extraneous dashes. var attrString = BitConverter.ToString(attrArray).Replace("-", string.Empty); diff --git a/client/specify_client.csproj b/client/specify_client.csproj index d69ae3f..d5e3bb9 100644 --- a/client/specify_client.csproj +++ b/client/specify_client.csproj @@ -18,7 +18,7 @@ false specify_client.App specify-client-favicon.ico - latest + 14.0 @@ -270,4 +270,4 @@ - \ No newline at end of file +