-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathrecipe.cake
More file actions
22 lines (19 loc) · 1.14 KB
/
recipe.cake
File metadata and controls
22 lines (19 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#load nuget:?package=Cake.Recipe&version=4.0.0
Environment.SetVariableNames();
BuildParameters.SetParameters(context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./src",
title: "Cake.FileHelpers",
repositoryOwner: "cake-contrib",
repositoryName: "Cake.FileHelpers",
appVeyorAccountName: "cakecontrib",
shouldRunDotNetCorePack: true,
shouldRunInspectCode: false,
shouldRunCodecov: false,
preferredBuildProviderType: BuildProviderType.GitHubActions);
BuildParameters.PrintParameters(Context);
ToolSettings.SetToolSettings(context: Context,
testCoverageFilter: "+[*]* -[xunit.*]* -[Cake.Core]* -[Cake.Testing]* -[*.Tests]* -[FakeItEasy]*",
testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*",
testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");
Build.RunDotNetCore();