-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.cake
77 lines (63 loc) · 2.35 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
var solutionPath = "./src/Stromblom.ExpressionToWhere.sln";
var artifactPath = Directory("./build-artifacts");
DotNetCoreMSBuildSettings msBuildSettings = null;
Task("Clean")
.Does(() => {
if(DirectoryExists(artifactPath))
{
DeleteDirectory(artifactPath, new DeleteDirectorySettings { Recursive = true, Force = true });
}
DeleteFiles("./*.nupkg");
});
Task("Restore")
.Does(() => {
Information("Restoring NuGet Packages for dotnet core...");
DotNetCoreRestore(solutionPath);
});
Task("Version")
.Does(() => {
var packageVersion = "0.1.0-local";
var informationalVersion = packageVersion;
if (AppVeyor.IsRunningOnAppVeyor)
{
packageVersion = $"0.1.0.{AppVeyor.Environment.Build.Number}";
var commitSha = AppVeyor.Environment.Repository.Commit.Id;
informationalVersion = $"{packageVersion}-{commitSha}";
if(AppVeyor.Environment.Repository.Branch != "master")
{
packageVersion = $"{packageVersion}-{AppVeyor.Environment.Repository.Branch}";
}
}
msBuildSettings = new DotNetCoreMSBuildSettings()
.WithProperty("Version", packageVersion)
.WithProperty("FileVersion", packageVersion)
.WithProperty("InformationalVersion", informationalVersion);
});
Task("Build")
.Does(() => {
var settings = new DotNetCoreBuildSettings {
Configuration = "Release",
MSBuildSettings = msBuildSettings
};
DotNetCoreBuild(solutionPath, settings);
});
Task("Package")
.Does(() => {
CreateDirectory(artifactPath);
var dotNetCorePackSettings = new DotNetCorePackSettings {
IncludeSymbols = true,
Configuration = "Release",
MSBuildSettings = msBuildSettings,
OutputDirectory = artifactPath,
NoBuild = true
};
DotNetCorePack("./src/Stromblom.ExpressionToWhere/Stromblom.ExpressionToWhere.csproj", dotNetCorePackSettings);
});
Task("Default")
.IsDependentOn("Clean")
.IsDependentOn("Restore")
.IsDependentOn("Version")
.IsDependentOn("Build")
.IsDependentOn("Package");
var target = Argument("target", "Default");
RunTarget(target);