This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
DeskHubSharp/DeskHubSharp/build.cake
2018-11-25 14:04:14 -05:00

23 lines
376 B
C#

////////////////////
// ARGUMENTS
////////////////////
var target = Argument("Build", "Default");
var configuration = Argument("configuration", "Release");
////////////////////
// TASKS
////////////////////
Task("Build")
.Does(() => {
MSBuild("../DeskHubSharp.sln");
});
Task("Done")
.IsDependentOn("Build")
.Does(() => {
Information("Done!");
});
RunTarget(target);