microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
affd7569cfa8bd4a83b86066b8636721ea186364

Branches

Tags

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

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Common/CompilerServices.cs

22lines · modecode

1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT License.
3
4using System.ComponentModel;
5
6namespace System.Runtime.CompilerServices;
7
8public class RequiredMemberAttribute : Attribute { }
9public class CompilerFeatureRequiredAttribute : Attribute
10{
11 public CompilerFeatureRequiredAttribute(string name) { }
12}
13
14/// <summary>
15/// Reserved to be used by the compiler for tracking metadata.
16/// This class should not be used by developers in source code.
17/// This dummy class is required to compile records when targeting .NET Standard
18/// </summary>
19[EditorBrowsable(EditorBrowsableState.Never)]
20public static class IsExternalInit
21{
22}