-
Notifications
You must be signed in to change notification settings - Fork 9
/
recipe.cake
24 lines (19 loc) · 1.03 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
#load nuget:?package=Cake.Recipe&version=2.0.0
Environment.SetVariableNames();
BuildParameters.SetParameters(context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./src",
solutionFilePath: "./Gazorator.sln",
title: "Gazorator",
repositoryOwner: "mholo65",
repositoryName: "gazorator",
appVeyorAccountName: "mholo65",
shouldRunDupFinder: false,
shouldRunInspectCode: false,
shouldRunDotNetCorePack: true,
shouldUseDeterministicBuilds: true);
BuildParameters.PrintParameters(Context);
ToolSettings.SetToolSettings(context: Context,
dupFinderExcludePattern: new string[] {
BuildParameters.RootDirectoryPath + "/src/Gazorator/**/*.AssemblyInfo.cs"});
Build.RunDotNetCore();