forked from bricelam/EFCore.Pluralizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
37 lines (34 loc) · 1.11 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
var target = Argument<string>("target");
var configuration = Argument<string>("configuration");
var signOutput = HasArgument("signOutput");
Task("Build")
.Does(
() =>
DotNetCoreBuild(
"EFCore.Pluralizer.sln",
new DotNetCoreBuildSettings
{
Configuration = configuration,
MSBuildSettings = new DotNetCoreMSBuildSettings
{
MaxCpuCount = 0,
NoLogo = true,
Properties =
{
{ "SignOutput", new[] { signOutput.ToString() } }
}
}
}));
Task("Test")
.IsDependentOn("Build")
.Does(
() =>
DotNetCoreTest(
"EFCore.Pluralizer.Test/EFCore.Pluralizer.Test.csproj",
new DotNetCoreTestSettings
{
Configuration = configuration,
NoBuild = true,
NoRestore = true
}));
RunTarget(target);