microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Common/CompilerServices.cs
22lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | using System.ComponentModel; |
| 5 | |
| 6 | namespace System.Runtime.CompilerServices; |
| 7 | |
| 8 | public class RequiredMemberAttribute : Attribute { } |
| 9 | public 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)] |
| 20 | public static class IsExternalInit |
| 21 | { |
| 22 | } |