-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrecipe.cake
30 lines (24 loc) · 1.5 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
#load nuget:?package=Chocolatey.Cake.Recipe&version=0.28.4
///////////////////////////////////////////////////////////////////////////////
// RECIPE SCRIPT
///////////////////////////////////////////////////////////////////////////////
Environment.SetVariableNames();
BuildParameters.SetParameters(context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./src",
solutionFilePath: "./src/fakerepository.sln",
solutionDirectoryPath: "./src/fakerepository",
resharperSettingsFileName: "fakerepository.sln.DotSettings",
title: "Fake Repository",
repositoryOwner: "gittools",
repositoryName: "fakerepository",
productName: "Fake Project",
productDescription: "The Ultimate Fake Repository.",
productCopyright: string.Format("Copyright © 2025 - {0} gep13.", DateTime.Now.Year),
shouldStrongNameSignDependentAssemblies: true,
strongNameDependentAssembliesInputPath: string.Format("{0}{1}", ((FilePath)("./src")).FullPath, "\\packages\\RestSharp*"),
treatWarningsAsErrors: false,
shouldRunILMerge: false);
ToolSettings.SetToolSettings(context: Context);
BuildParameters.PrintParameters(Context);
Build.Run();