Nulah.PowerShell/build/Program.cs
Scott fc3fe217e4 chore: Add comments to public methods
- rename GetRepo to GetDirectoryForRegisteredRepo so it's actually doing what it says
2026-09-05 13:42:05 +10:00

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);
}
}