mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
13 lines
228 B
C#
13 lines
228 B
C#
using Cake.Frosting;
|
|
|
|
public class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
return new CakeHost()
|
|
.UseContext<Context>()
|
|
.UseLifetime<Lifetime>()
|
|
.Run(args);
|
|
;
|
|
}
|
|
} |