microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Common/CompilerServices.cs
19lines · modecode
| 1 | using System.ComponentModel; |
| 2 | |
| 3 | namespace System.Runtime.CompilerServices; |
| 4 | |
| 5 | public class RequiredMemberAttribute : Attribute { } |
| 6 | public 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)] |
| 17 | public static class IsExternalInit |
| 18 | { |
| 19 | } |