d4a3190bfc
- Bifurcate Package and Publish targets to enable signing. - Move publish from bash/ps into c#. - Create multiple targets to create MSIs and Bundles.
12 lines
207 B
C#
12 lines
207 B
C#
namespace Microsoft.DotNet.Cli.Build.Framework
|
|
{
|
|
public enum BuildPlatform
|
|
{
|
|
Windows = 1,
|
|
Unix = 2,
|
|
Linux = 3,
|
|
OSX = 4,
|
|
Ubuntu = 5,
|
|
CentOS = 6
|
|
}
|
|
}
|