Skip to content

Commit 19a0325

Browse files
committed
suppress warning IDE0060 and SA1305
1 parent 2527574 commit 19a0325

File tree

1 file changed

+7
-1
lines changed
  • src/Smdn.Reflection.ReverseGenerating.ListApi.Core/Smdn.Reflection.ReverseGenerating.ListApi

1 file changed

+7
-1
lines changed

src/Smdn.Reflection.ReverseGenerating.ListApi.Core/Smdn.Reflection.ReverseGenerating.ListApi/FrameworkMonikers.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@ public static class FrameworkMonikers {
1111
/// <remarks>
1212
/// <see cref="FrameworkName.Profile"/> of <paramref name="frameworkName"/> is not supported currently.
1313
/// </remarks>
14-
public static bool TryGetMoniker(FrameworkName frameworkName, string osSpecifier, out string frameworkMoniker)
14+
public static bool TryGetMoniker(
15+
FrameworkName frameworkName,
16+
#pragma warning disable IDE0060, SA1305
17+
string osSpecifier,
18+
#pragma warning restore IDE0060, SA1305
19+
out string frameworkMoniker
20+
)
1521
{
1622
if (frameworkName is null)
1723
throw new ArgumentNullException(nameof(frameworkName));

0 commit comments

Comments
 (0)