dotnet-installer/scripts/dotnet-cli-build/Program.cs

13 lines
316 B
C#
Raw Normal View History

2016-02-02 18:04:50 +00:00
using Microsoft.DotNet.Cli.Build.Framework;
namespace Microsoft.DotNet.Cli.Build
{
public class Program
{
public static int Main(string[] args) => BuildSetup.Create(".NET Core CLI")
.UseStandardGoals()
.UseAllTargetsFromAssembly<Program>()
.Run(args);
}
}