Commit b66031c2 authored by Savorboard's avatar Savorboard

Fix build script

parent df3d28c9
using System; using System.Collections.Generic;
using System.Collections.Generic;
using FlubuCore.Context; using FlubuCore.Context;
using FlubuCore.IO; using FlubuCore.IO;
using FlubuCore.Scripting; using FlubuCore.Scripting;
...@@ -66,8 +65,8 @@ namespace BuildScript ...@@ -66,8 +65,8 @@ namespace BuildScript
.NoBuild() .NoBuild()
.Project(projectFile) .Project(projectFile)
.IncludeSymbols() .IncludeSymbols()
.VersionSufix(BuildVersion.Suffix) .When(() => !string.IsNullOrEmpty(BuildVersion.Suffix), t => t.VersionSufix(BuildVersion.Suffix)
.OutputDirectory(ArtifactsDir)); .OutputDirectory(ArtifactsDir);
}); });
context.CreateTarget("Default") context.CreateTarget("Default")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment