dotnet-installer/build_projects/Microsoft.DotNet.Cli.Build.Framework/Enumerations/BuildPlatform.cs
2016-05-16 14:55:15 -05:00

14 lines
245 B
C#

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
}
}