19 lines
463 B
C#
19 lines
463 B
C#
// 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,
|
|
Debian = 8,
|
|
Fedora = 9,
|
|
OpenSuse = 10
|
|
}
|
|
}
|