-
Notifications
You must be signed in to change notification settings - Fork 2
/
recipe.cake
26 lines (21 loc) · 1.39 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
#load nuget:?package=Cake.Recipe&version=1.1.1
Environment.SetVariableNames();
BuildParameters.SetParameters(context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./Source",
title: "chocolatey-language-server",
repositoryOwner: "chocolatey-community",
repositoryName: "chocolatey-language-server",
appVeyorAccountName: "chocolateycommunity",
shouldRunGitVersion: true,
shouldRunDotNetCorePack: true,
shouldDeployGraphDocumentation: false);
BuildParameters.PrintParameters(Context);
ToolSettings.SetToolSettings(context: Context,
dupFinderExcludePattern: new string[] {
BuildParameters.RootDirectoryPath + "/Source/chocolatey-language-server.Tests/*.cs",
BuildParameters.RootDirectoryPath + "/Source/chocolatey-language-server/**/*.AssemblyInfo.cs" },
testCoverageFilter: "+[*]* -[xunit.*]* -[Cake.Core]* -[Cake.Testing]* -[*.Tests]* ",
testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*",
testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");
Build.RunDotNetCore();