| File: SDKType.cs | Web Access |
| Project: src\msbuild\src\Utilities\Microsoft.Build.Utilities.csproj (Microsoft.Build.Utilities.Core) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Build.Utilities { /// <summary> /// Type of SDK /// </summary> public enum SDKType { /// <summary> /// Not specified /// </summary> Unspecified, /// <summary> /// Traditional 3rd party SDK /// </summary> External, /// <summary> /// Platform extension SDK /// </summary> Platform, /// <summary> /// Framework extension SDK /// </summary> Framework } }