Skip to content
This repository was archived by the owner on Aug 18, 2021. It is now read-only.

Commit 6517313

Browse files
committed
fix: inhibits warning
1 parent 94749bd commit 6517313

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Liquid.Base/Workbench.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
using System;
55
using System.Collections.Generic;
6+
using System.Diagnostics.CodeAnalysis;
67
using System.IO;
78
using Liquid.Base.Interfaces.Polly;
89
using Liquid.Interfaces;
@@ -14,6 +15,10 @@ namespace Liquid
1415
/// Provides a global way to configure a Liquid application.
1516
/// </summary>
1617
[Obsolete("Please use the correct spelled class, Liquid.Base.Workbench")]
18+
[SuppressMessage(
19+
"StyleCop.CSharp.MaintainabilityRules",
20+
"SA1402:File may only contain a single type",
21+
Justification = "Obsolete class will be removed.")]
1722
public static class WorkBench
1823
{
1924
public static ILightRepository Repository => Workbench.Instance.Repository;

0 commit comments

Comments
 (0)