18 lines
No EOL
456 B
C#
18 lines
No EOL
456 B
C#
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(CopyOutputTask))]
|
|
[IsDependentOn(typeof(CreateBundleArchiveTask))]
|
|
public class DefaultTask : FrostingTask
|
|
{
|
|
public override void Run(ICakeContext context)
|
|
{
|
|
base.Run(context);
|
|
}
|
|
} |