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

21 lines
485 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-26 23:16:18 -07:00
Debian = 8,
Fedora = 9,
2018-11-16 17:51:51 -08:00
OpenSuse = 10,
FreeBSD = 11
}
}