- Add Cake build project - Change to CPM - Package bumps for security bumps - Reorganise solution structure to group harness projects
16 lines
No EOL
372 B
C#
16 lines
No EOL
372 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(CopyOutputTask))]
|
|
public class DefaultTask : FrostingTask
|
|
{
|
|
public override void Run(ICakeContext context)
|
|
{
|
|
base.Run(context);
|
|
}
|
|
} |