15 lines
No EOL
349 B
C#
15 lines
No EOL
349 B
C#
using Cake.Frosting;
|
|
|
|
namespace Build;
|
|
|
|
public static class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
return new CakeHost()
|
|
.UseContext<BuildContext>()
|
|
// Uncomment this if you don't want to set the suffix via the run profile program arguments
|
|
.UseCakeSetting(nameof(BuildContext.BuildSuffix), "pre-release")
|
|
.Run(args);
|
|
}
|
|
} |