-
Notifications
You must be signed in to change notification settings - Fork 46
/
build.cake
55 lines (44 loc) · 1.6 KB
/
build.cake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var versionSuffix = string.Format(".{0}.{1}"
, (int)((DateTime.UtcNow - new DateTime(2000, 1, 1, 0, 0, 0, DateTimeKind.Utc)).TotalDays)
, (int)((DateTime.UtcNow - DateTime.UtcNow.Date).TotalSeconds / 2));
var version = "2.0" + versionSuffix;
//////////////////////////////////////////////////////////////////////
// TASKS
//////////////////////////////////////////////////////////////////////
Task("Clean")
.Does(() =>
{
CleanDirectory(Directory("./RtfPipe/bin/" + configuration + "/"));
CleanDirectory(Directory("./artifacts/"));
});
Task("Restore-NuGet-Packages")
.IsDependentOn("Clean")
.Does(() =>
{
DotNetCoreRestore("./RtfPipe/RtfPipe.csproj");
});
Task("Build")
.IsDependentOn("Restore-NuGet-Packages")
.Does(() =>
{
DotNetBuild("./RtfPipe/RtfPipe.csproj", (settings) =>
{
settings.Configuration = configuration;
settings.WithProperty("Version", version);
});
MoveFiles("./RtfPipe/bin/" + configuration + "/RtfPipe.*.nupkg", "./artifacts/");
});
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("Build");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
RunTarget(target);