12 lines
316 B
C#
Executable file
12 lines
316 B
C#
Executable file
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);
|
|
}
|
|
}
|