Skip to content

Commit

Permalink
Merge branch 'release/0.6.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorkstromm committed Apr 30, 2021
2 parents c38d399 + b7a5a1c commit c3cb1ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipe.cake
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ BuildParameters.Tasks.DotNetCoreBuildTask
Restore = true,
Properties = {
["Version"] = new[] { buildVersion.SemVersion },
["AssemblyVersion"] = new[] { buildVersion.Version },
["AssemblyVersion"] = new[] { "1.0.0.0" },
["FileVersion"] = new[] { buildVersion.Version },
["AssemblyInformationalVersion"] = new[] { buildVersion.InformationalVersion },
}
Expand All @@ -123,7 +123,7 @@ BuildParameters.Tasks.DotNetCorePackTask
{
var msBuildSettings = new DotNetCoreMSBuildSettings()
.WithProperty("Version", buildVersion.SemVersion)
.WithProperty("AssemblyVersion", buildVersion.Version)
.WithProperty("AssemblyVersion", "1.0.0.0")
.WithProperty("FileVersion", buildVersion.Version)
.WithProperty("AssemblyInformationalVersion", buildVersion.InformationalVersion);

Expand Down

0 comments on commit c3cb1ab

Please sign in to comment.