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.IO;
using FlubuCore.Scripting;
......@@ -66,8 +65,8 @@ namespace BuildScript
.NoBuild()
.Project(projectFile)
.IncludeSymbols()
.VersionSufix(BuildVersion.Suffix)
.OutputDirectory(ArtifactsDir));
.When(() => !string.IsNullOrEmpty(BuildVersion.Suffix), t => t.VersionSufix(BuildVersion.Suffix)
.OutputDirectory(ArtifactsDir);
});
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