From 35e75cbc1cf4aa2925f18a82802555f0320afd28 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Sat, 9 Dec 2017 23:21:27 +0100 Subject: [PATCH] Fix build I like how finally I'm getting notified about potential warnings, if only I could hook ReSharper there... --- ArchiSteamFarm/IPC.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ArchiSteamFarm/IPC.cs b/ArchiSteamFarm/IPC.cs index dc67ddf00..5075606b0 100644 --- a/ArchiSteamFarm/IPC.cs +++ b/ArchiSteamFarm/IPC.cs @@ -517,8 +517,10 @@ namespace ArchiSteamFarm { [SuppressMessage("ReSharper", "ClassCannotBeInstantiated")] private sealed class BotRequest { +#pragma warning disable 649 [JsonProperty(Required = Required.Always)] internal readonly BotConfig BotConfig; +#pragma warning restore 649 [JsonProperty(Required = Required.DisallowNull)] internal readonly bool KeepSensitiveDetails = true;