-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.cake
64 lines (57 loc) · 1.67 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
var configuration = Argument("Configuration", "Release");
var version = Argument("version", "0.1.0-beta");
var projectName = "FluentHttpClientMock";
var solution = "./FluentHttpClientMock.sln";
// Run dotnet restore to restore all package references.
Task("Restore")
.Does(() =>
{
DotNetCoreRestore();
});
Task("Build")
.IsDependentOn("Restore")
.Does(() =>
{
var msBuildSettings = new DotNetCoreMSBuildSettings();
msBuildSettings.SetVersion(version);
DotNetCoreBuild(solution,
new DotNetCoreBuildSettings()
{
Configuration = configuration,
MSBuildSettings = msBuildSettings
});
});
Task("Test")
.IsDependentOn("Build")
.Does(() =>
{
var projects = GetFiles($"./{projectName}.Tests/**/*.csproj");
foreach(var project in projects)
{
DotNetCoreTest(
project.FullPath,
new DotNetCoreTestSettings()
{
Configuration = configuration,
NoBuild = true
});
}
});
Task("Package")
.IsDependentOn("Test")
.Does(() =>
{
var nuGetPackSettings = new NuGetPackSettings
{
OutputDirectory = "artifacts",
IncludeReferencedProjects = true,
Properties = new Dictionary<string, string>
{
{ "Configuration", "Release" }
},
Version = version
};
MSBuild($"./{projectName}/{projectName}.csproj", new MSBuildSettings().SetConfiguration("Release"));
NuGetPack($"./{projectName}/{projectName}.csproj", nuGetPackSettings);
});
RunTarget("Package");