Skip to content

Commit

Permalink
Version stamping.
Browse files Browse the repository at this point in the history
Fixes #30
  • Loading branch information
dazinator committed Mar 11, 2018
1 parent b472d7f commit 899a8d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,12 @@ Task("__Pack")
.Does(() =>
{
// var versionarg = "/p:PackageVersion=" + nugetVersion;
var versionarg = "/p:PackageVersion=" + nugetVersion;
var settings = new DotNetCorePackSettings
{
Configuration = "Release",
OutputDirectory = $"{artifactsDir}",
// ArgumentCustomization = args=>args.Append(versionarg)
ArgumentCustomization = args=>args.Append(versionarg)
};
DotNetCorePack($"{projectToPackage}", settings);
Expand Down

0 comments on commit 899a8d4

Please sign in to comment.