mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-22 18:29:30 +00:00
23 lines
464 B
C#
23 lines
464 B
C#
using Cake.Core;
|
|
using Cake.Frosting;
|
|
|
|
namespace BuildScripts;
|
|
|
|
public static class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
return new CakeHost()
|
|
.UseContext<BuildContext>()
|
|
.UseWorkingDirectory("../")
|
|
.Run(args);
|
|
}
|
|
}
|
|
|
|
|
|
[TaskName("Default")]
|
|
[IsDependentOn(typeof(BuildTask))]
|
|
[IsDependentOn(typeof(TestTask))]
|
|
[IsDependentOn(typeof(PackageTask))]
|
|
public sealed class DefaultTask : FrostingTask {}
|