2016-02-02 10:04:50 -08:00
|
|
|
|
using Microsoft.DotNet.Cli.Build.Framework;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
2016-02-19 17:00:41 -08:00
|
|
|
|
public static int Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
DebugHelper.HandleDebugSwitch(ref args);
|
|
|
|
|
|
|
|
|
|
return BuildSetup.Create(".NET Core CLI")
|
|
|
|
|
.UseStandardGoals()
|
|
|
|
|
.UseAllTargetsFromAssembly<Program>()
|
|
|
|
|
.Run(args);
|
|
|
|
|
}
|
2016-02-02 10:04:50 -08:00
|
|
|
|
}
|
|
|
|
|
}
|