microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
samples/migration-bot

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/src/Microsoft.Teams.Bot.Core/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 "CA1848:Use the LoggerMessage delegates",
8 Justification = "<Pending>",
9 Scope = "namespaceanddescendants",
10 Target = "~N:Microsoft.Teams.Bot.Core")]
11
12[assembly: SuppressMessage("Design",
13 "CA1054:URI-like parameters should not be strings",
14 Justification = "String URLs are used for consistency with existing API patterns",
15 Scope = "namespaceanddescendants",
16 Target = "~N:Microsoft.Teams.Bot.Core.Http")]
17
18[assembly: SuppressMessage("Usage",
19 "CA2227:Collection properties should be read only",
20 Justification = "Required for serialization",
21 Scope = "namespaceanddescendants",
22 Target = "~N:Microsoft.Teams.Bot.Core")]
23