microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
3ddf9fa76ec1801a0e3ca312c6d9855879571ac1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

core/src/Microsoft.Teams.Apps/GlobalSuppressions.cs

22lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4using System.Diagnostics.CodeAnalysis;
5
6[assembly: SuppressMessage("Performance",
7 "CA1873:Avoid potentially expensive logging",
8 Justification = "<Pending>",
9 Scope = "namespaceanddescendants",
10 Target = "~N:Microsoft.Teams.Apps")]
11
12[assembly: SuppressMessage("Performance",
13 "CA1848:Use the LoggerMessage delegates",
14 Justification = "<Pending>",
15 Scope = "namespaceanddescendants",
16 Target = "~N:Microsoft.Teams.Apps")]
17
18[assembly: SuppressMessage("Usage",
19 "CA2227:Collection properties should be read only",
20 Justification = "<Pending>",
21 Scope = "namespaceanddescendants",
22 Target = "~N:Microsoft.Teams.Apps")]
23