Added Default task

This commit is contained in:
Christopher Whitley
2023-11-16 00:50:29 -05:00
parent 51a82aab41
commit 2bf02373e4
+7
View File
@@ -13,3 +13,10 @@ public static class Program
.Run(args);
}
}
[TaskName("Default")]
[IsDependentOn(typeof(BuildTask))]
[IsDependentOn(typeof(TestTask))]
[IsDependentOn(typeof(PackageTask))]
public sealed class DefaultTask : FrostingTask {}