-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.cake
52 lines (50 loc) · 1.2 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
using IO = System.IO;
var configuration = Argument("Configuration", "Debug");
var target = Argument("Target", "Default");
Task("Default")
.IsDependentOn("Test")
.IsDependentOn("Pack")
;
Task("Build")
.Does(() =>
{
var setting = new DotNetCoreBuildSettings()
{
Configuration = configuration,
};
DotNetCoreBuild("PooledStream.slnproj", setting);
});
Task("Test")
.IsDependentOn("Build")
.Does(() =>
{
var setting = new DotNetCoreTestSettings()
{
Configuration = configuration,
Framework = "net6.0"
};
DotNetCoreTest(IO.Path.Combine("PooledStream.Test", "PooledStream.Test.csproj"), setting);
})
;
Task("Pack")
.IsDependentOn("Build")
.Does(() =>
{
var settings = new DotNetCorePackSettings()
{
Configuration = configuration,
IncludeSymbols = true
};
DotNetCorePack("PooledStream.slnproj", settings);
});
Task("Clean")
.Does(() =>
{
DotNetCoreClean("PooledStream.slnproj");
});
Task("SlnGen")
.Does(() =>
{
DotNetCoreMSBuild("PooledStream.slngenproj");
});
RunTarget(target);