-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.cake
More file actions
22 lines (17 loc) · 847 Bytes
/
build.cake
File metadata and controls
22 lines (17 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#reference "tools/AutoCake.Build/tools/AutoCake.Build.dll"
#load "tools/AutoCake.Build/content/build-tasks.cake"
BuildConfig.GeneratedAssemblyMetaDataReference = "BuildMetaDataAssemblyInfo.cs";
BuildConfig.AssemblyProperties["Test"] = "Value";
PublishActions.PackSettings.Symbols = true;
PublishActions.PackSettings.IncludeReferencedProjects = false;
PublishActions.PackSettings.Verbosity = NuGetVerbosity.Detailed;
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("Build");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
RunTarget(target);