Nulah.PowerShell/build/Tasks/DefaultTask.cs
Scott ecb0a20cbb feat: add Cake build to produce powershell module (#2)
- Add Cake build project
- Change to CPM
- Package bumps for security bumps
- Reorganise solution structure to group harness projects
2026-07-31 02:15:16 +00:00

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);
}
}