Enable nuget building
This commit is contained in:
parent
f1b5d6f021
commit
3b2fcca6d6
2 changed files with 6 additions and 2 deletions
|
@ -3,7 +3,7 @@ mono: latest
|
|||
dotnet: 2.0.0
|
||||
dist: trusty
|
||||
script:
|
||||
- "./build.sh"
|
||||
- "./build.sh --BuildTarget=FullBuild"
|
||||
deploy:
|
||||
provider: releases
|
||||
api_key:
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
// VARS
|
||||
|
||||
Settings.Cake = Context;
|
||||
Settings.Version = "3.22.24.15";
|
||||
Settings.Version = "3.22.24.16";
|
||||
Settings.BuildTarget = Argument("BuildTarget", "Default");
|
||||
Settings.Assembly = Argument("Assembly", "");
|
||||
|
||||
|
@ -133,6 +133,10 @@ Task("PackageTemplates")
|
|||
Task("Default")
|
||||
.IsDependentOn("Build");
|
||||
|
||||
Task("FullBuild")
|
||||
.IsDependentOn("PackageNuGet")
|
||||
.IsDependentOn("PackageTemplates");
|
||||
|
||||
// EXECUTION
|
||||
|
||||
RunTarget(Settings.BuildTarget);
|
||||
|
|
Loading…
Reference in a new issue