using Cake.Core; using Cake.Core.Diagnostics; using Cake.Frosting; namespace Build.Tasks; // Consider this the "entry" point for builds, task order is defined by a chain of IsDependentOn [TaskName("Default")] [IsDependentOn(typeof(BuildTask))] [IsDependentOn(typeof(TagCommitTask))] [IsDependentOn(typeof(CopyOutputTask))] [IsDependentOn(typeof(CreateBundleArchiveTask))] public class DefaultTask : FrostingTask { public override void Run(ICakeContext context) { base.Run(context); } }