-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.cake
More file actions
42 lines (29 loc) · 1 KB
/
build.cake
File metadata and controls
42 lines (29 loc) · 1 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
// Define the required parameters
var DefaultSolutionName = "Ghk.MultiTargeting";
var DefaultCompany = "Geert van Horrik";
var DefaultRepositoryUrl = string.Format("https://github.com/{0}/{1}", DefaultCompany, DefaultSolutionName);
var StartYear = 2018;
// Note: the rest of the variables should be coming from the build server,
// see `/deployment/cake/*-variables.cake` for customization options
//=======================================================
// Components
var ComponentsToBuild = new []
{
"Ghk.MultiTargeting"
};
//=======================================================
// WPF apps
var WpfAppsToBuild = new []
{
"Ghk.MultiTargeting.Example.Wpf"
};
//=======================================================
// UWP apps
var UwpAppsToBuild = new []
{
"Ghk.MultiTargeting.Example.Uwp"
};
//=======================================================
// Now all variables are defined, include the tasks, that
// script will take care of the rest of the magic
#l "./deployment/cake/tasks.cake"