microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.0.0-preview.5

Branches

Tags

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

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Common/CompilerServices.cs

19lines · modecode

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