Skip to content

Commit 8f75042

Browse files
committed
Silence resharper over obsolete code that will be removed soon
1 parent 34c1016 commit 8f75042

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

ArchiSteamFarm/ObsoleteSteamGuardAccount.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
using Newtonsoft.Json;
1+
using System.Diagnostics.CodeAnalysis;
2+
using Newtonsoft.Json;
23

34
namespace ArchiSteamFarm {
45
// TODO: This will be completely removed soon
6+
[SuppressMessage("ReSharper", "MemberCanBeInternal")]
7+
[SuppressMessage("ReSharper", "UnusedMember.Global")]
8+
[SuppressMessage("ReSharper", "InconsistentNaming")]
9+
[SuppressMessage("ReSharper", "ClassNeverInstantiated.Global")]
10+
[SuppressMessage("ReSharper", "UnusedAutoPropertyAccessor.Global")]
511
public class ObsoleteSteamGuardAccount {
612
[JsonProperty("shared_secret")]
713
public string SharedSecret { get; set; }

0 commit comments

Comments
 (0)