2017-03-02 21:04:03 -08:00
|
|
|
// 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.
|
|
|
|
|
2016-02-19 17:00:41 -08:00
|
|
|
namespace Microsoft.DotNet.Cli.Build.Framework
|
|
|
|
{
|
|
|
|
public enum BuildPlatform
|
|
|
|
{
|
|
|
|
Windows = 1,
|
2016-03-07 12:20:50 -08:00
|
|
|
Unix = 2,
|
|
|
|
Linux = 3,
|
|
|
|
OSX = 4,
|
|
|
|
Ubuntu = 5,
|
2016-03-08 23:42:15 +00:00
|
|
|
CentOS = 6,
|
2016-03-03 18:38:58 +00:00
|
|
|
RHEL = 7,
|
2016-05-26 23:16:18 -07:00
|
|
|
Debian = 8,
|
2016-05-31 13:54:35 -07:00
|
|
|
Fedora = 9,
|
|
|
|
OpenSuse = 10
|
2016-02-19 17:00:41 -08:00
|
|
|
}
|
2016-03-07 12:20:50 -08:00
|
|
|
}
|