-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrecipe.cake
More file actions
25 lines (20 loc) · 838 Bytes
/
recipe.cake
File metadata and controls
25 lines (20 loc) · 838 Bytes
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
#load nuget:?package=Cake.Recipe&version=3.1.1
Environment.SetVariableNames();
BuildParameters.SetParameters(
context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./src",
title: "StatiqExtensions.WellKnown",
solutionFilePath: "./src/WellKnown.sln",
masterBranchName: "main",
repositoryOwner: "nils-org",
shouldRunDotNetCorePack: true,
shouldUseDeterministicBuilds: true,
shouldRunCodecov: false,
preferredBuildProviderType: BuildProviderType.GitHubActions,
preferredBuildAgentOperatingSystem: PlatformFamily.Linux);
BuildParameters.PrintParameters(Context);
ToolSettings.SetToolSettings(context: Context);
ToolSettings.SetToolPreprocessorDirectives(
reSharperTools: "#tool nuget:?package=JetBrains.ReSharper.CommandLineTools&version=2022.3.1");
Build.RunDotNetCore();