- rename GetRepo to GetDirectoryForRegisteredRepo so it's actually doing what it says
13 lines
No EOL
186 B
C#
13 lines
No EOL
186 B
C#
using Cake.Frosting;
|
|
|
|
namespace Build;
|
|
|
|
public static class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
return new CakeHost()
|
|
.UseContext<BuildContext>()
|
|
.Run(args);
|
|
}
|
|
} |