-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.cake
109 lines (92 loc) · 3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#tool "nuget:?package=xunit.runner.console"
#tool "nuget:?package=GitVersion.CommandLine"
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var toolpath = Argument("toolpath", @"");
//////////////////////////////////////////////////////////////////////
// PREPARATION
//////////////////////////////////////////////////////////////////////
// Define directories.
var buildDir = Directory("./Artifacts") + Directory(configuration);
GitVersion gitVersion = null;
//////////////////////////////////////////////////////////////////////
// TASKS
//////////////////////////////////////////////////////////////////////
Task("Clean")
.Does(() =>
{
CleanDirectory(buildDir);
});
Task("GitVersion").Does(() => {
gitVersion = GitVersion(new GitVersionSettings {
UpdateAssemblyInfo = true
});
});
Task("SyncNugetDependencies").Does(() => {
});
Task("Restore-NuGet-Packages")
.IsDependentOn("Clean")
.Does(() =>
{
NuGetRestore("./LiquidProjections.NHibernate.sln", new NuGetRestoreSettings
{
NoCache = true,
Verbosity = NuGetVerbosity.Detailed,
ToolPath = "./build/nuget.exe"
});
});
Task("Build")
.IsDependentOn("Restore-NuGet-Packages")
.Does(() =>
{
if(IsRunningOnWindows())
{
// Use MSBuild
MSBuild("./LiquidProjections.NHibernate.sln", settings => {
settings.ToolPath = String.IsNullOrEmpty(toolpath) ? settings.ToolPath : toolpath;
settings.ToolVersion = MSBuildToolVersion.VS2017;
settings.PlatformTarget = PlatformTarget.MSIL;
settings.SetConfiguration(configuration);
});
}
else
{
// Use XBuild
XBuild("./LiquidProjections.NHibernate.sln", settings =>
settings.SetConfiguration(configuration));
}
});
Task("Run-Unit-Tests")
.Does(() =>
{
XUnit2("./Tests/LiquidProjections.NHibernate.Specs/**/bin/" + configuration + "/*.Specs.dll", new XUnit2Settings {
});
});
Task("Pack")
.IsDependentOn("GitVersion")
.IsDependentOn("Build")
.Does(() =>
{
NuGetPack("./src/LiquidProjections.NHibernate/.nuspec", new NuGetPackSettings {
OutputDirectory = "./Artifacts",
Version = gitVersion.NuGetVersionV2,
Properties = new Dictionary<string, string> {
{ "nugetversion", gitVersion.NuGetVersionV2 }
}
});
});
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("GitVersion")
.IsDependentOn("Build")
.IsDependentOn("Run-Unit-Tests")
.IsDependentOn("Pack");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
RunTarget(target);