dotnet-installer/build_projects/Microsoft.DotNet.Cli.Build.Framework/Enumerations/BuildPlatform.cs

20 lines
463 B
C#
Raw Normal View History

// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.DotNet.Cli.Build.Framework
{
public enum BuildPlatform
{
Windows = 1,
Unix = 2,
Linux = 3,
OSX = 4,
Ubuntu = 5,
CentOS = 6,
RHEL = 7,
2016-05-27 06:16:18 +00:00
Debian = 8,
Fedora = 9,
OpenSuse = 10
}
}