From fcc0d70cd142ada2890dc11d5ecd77b6f40c1e46 Mon Sep 17 00:00:00 2001 From: Archi Date: Thu, 14 Mar 2024 01:23:29 +0100 Subject: [PATCH] Fix build --- ArchiSteamFarm/Core/NativeMethods.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ArchiSteamFarm/Core/NativeMethods.cs b/ArchiSteamFarm/Core/NativeMethods.cs index 9c30c92d1..5a2e774a7 100644 --- a/ArchiSteamFarm/Core/NativeMethods.cs +++ b/ArchiSteamFarm/Core/NativeMethods.cs @@ -107,12 +107,12 @@ internal static partial class NativeMethods { [StructLayout(LayoutKind.Sequential)] internal struct FlashWindowInfo { -#pragma warning disable ReSharper.Reordering // TODO: This silly pragma doesn't do anything, but it stops Rider from reordering, we may be able to get rid of it later +#pragma warning disable Reordering // TODO: This silly pragma doesn't do anything, but it stops Rider from reordering, we may be able to get rid of it later public uint StructSize; public nint WindowHandle; public EFlashFlags Flags; public uint Count; public uint TimeoutBetweenFlashes; -#pragma warning restore ReSharper.Reordering // TODO: This silly pragma doesn't do anything, but it stops Rider from reordering, we may be able to get rid of it later +#pragma warning restore Reordering // TODO: This silly pragma doesn't do anything, but it stops Rider from reordering, we may be able to get rid of it later } }