Enable nuget building

This commit is contained in:
cra0zy 2017-11-12 02:32:36 +01:00
parent f1b5d6f021
commit 3b2fcca6d6
2 changed files with 6 additions and 2 deletions

View File

@ -3,7 +3,7 @@ mono: latest
dotnet: 2.0.0
dist: trusty
script:
- "./build.sh"
- "./build.sh --BuildTarget=FullBuild"
deploy:
provider: releases
api_key:

View File

@ -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", "");
@ -132,6 +132,10 @@ Task("PackageTemplates")
Task("Default")
.IsDependentOn("Build");
Task("FullBuild")
.IsDependentOn("PackageNuGet")
.IsDependentOn("PackageTemplates");
// EXECUTION