-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
57 lines (49 loc) · 1.42 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
56
57
var target = Argument("target", "Default");
var automated = Argument("automated", "false");
var configuration = Argument("configuration", "Release");
//var buildversion = Argument("buildversion", "0.9.0");
var artifactsPath = "./artifacts";
var solutionPath = "./PatchMap.sln";
var testProjectPath = "./PatchMap.Tests/PatchMap.Tests.csproj";
var nugetProjectPath = "./PatchMap/PatchMap.csproj";
Setup(ctx =>
{
Information("Running tasks...");
});
Teardown(ctx =>
{
Information("Finished running tasks.");
});
Task("Clean")
.Does(() =>
{
CleanDirectories(new[] { artifactsPath });
DotNetCoreClean(solutionPath);
});
Task("Restore")
.Does(() =>
{
DotNetCoreRestore(solutionPath);
});
Task("Test")
.Does(() =>
{
//DotNetCoreTest(testProjectPath, new DotNetCoreTestSettings { Logger = (automated == "true") ? "Appveyor" : "trx", ResultsDirectory = artifactsPath });
DotNetCoreTest(testProjectPath, new DotNetCoreTestSettings { Logger = "trx", ResultsDirectory = artifactsPath });
});
Task("Package")
.Does(() =>
{
DotNetCorePack(nugetProjectPath, new DotNetCorePackSettings
{
OutputDirectory = artifactsPath,
Configuration = configuration//,
//ArgumentCustomization = args=>args.Append("/p:Version=" + buildversion)
});
});
Task("Default")
.IsDependentOn("Clean")
.IsDependentOn("Restore")
.IsDependentOn("Test")
.IsDependentOn("Package");
RunTarget(target);