3edcab8eab
Conflicts: scripts/Microsoft.DotNet.Cli.Build.Framework/CurrentPlatform.cs scripts/Microsoft.DotNet.Cli.Build.Framework/Enumerations/BuildPlatform.cs
13 lines
225 B
C#
13 lines
225 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
|
|
}
|
|
}
|