dotnet-installer/build_projects/dotnet-host-build/Program.cs

18 lines
421 B
C#
Raw Normal View History

2016-02-02 18:04:50 +00:00
using Microsoft.DotNet.Cli.Build.Framework;
2016-05-12 00:20:40 +00:00
namespace Microsoft.DotNet.Host.Build
2016-02-02 18:04:50 +00:00
{
public class Program
{
public static int Main(string[] args)
{
DebugHelper.HandleDebugSwitch(ref args);
2016-05-12 00:20:40 +00:00
return BuildSetup.Create(".NET Core Host")
.UseStandardGoals()
.UseAllTargetsFromAssembly<Program>()
.Run(args);
}
2016-02-02 18:04:50 +00:00
}
}