-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrecipe.cake
37 lines (30 loc) · 1.4 KB
/
recipe.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
#load nuget:?package=Cake.Recipe&version=3.1.1
//*************************************************************************************************
// Settings
//*************************************************************************************************
Environment.SetVariableNames();
BuildParameters.SetParameters(
context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./src",
title: "Cake.GitHub",
repositoryOwner: "cake-contrib",
repositoryName: "Cake.GitHub",
appVeyorAccountName: "cakecontrib",
shouldUseDeterministicBuilds: true,
shouldRunCodecov: false,
shouldGenerateDocumentation: false,
shouldRunInspectCode: false,
shouldRunCoveralls: false,
shouldRunDotNetCorePack: true);
BuildParameters.PrintParameters(Context);
ToolSettings.SetToolSettings(
context: Context,
skipDuplicatePackages: true,
testCoverageFilter: "+[*]* -[xunit.*]* -[Cake.Core]* -[Cake.Testing]* -[*.Tests]* -[Cake.GitHub.Reporting.Generic]LitJson.* -[Shouldly]* -[DiffEngine]* -[EmptyFiles]*",
testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*",
testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");
//*************************************************************************************************
// Execution
//*************************************************************************************************
Build.RunDotNetCore();