Skip to content
This repository has been archived by the owner on Jan 25, 2019. It is now read-only.

Commit

Permalink
Removed local build suffix for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
patriksvensson committed Apr 28, 2015
1 parent 7e42dec commit cb0d1ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var releaseNotes = ParseReleaseNotes("./ReleaseNotes.md");
var version = releaseNotes.Version.ToString();

var buildNumber = AppVeyor.Environment.Build.Number;
var buildSuffix = BuildSystem.IsLocalBuild ? "-local" : string.Concat("-build-", buildNumber);
var buildSuffix = BuildSystem.IsLocalBuild ? "" : string.Concat("-build-", buildNumber);
var buildVersion = version + buildSuffix;

//////////////////////////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion src/SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
[assembly: AssemblyProduct("Cake")]
[assembly: AssemblyVersion("0.0.6")]
[assembly: AssemblyFileVersion("0.0.6")]
[assembly: AssemblyInformationalVersion("0.0.6-local")]
[assembly: AssemblyInformationalVersion("0.0.6")]
[assembly: AssemblyCopyright("Copyright (c) Patrik Svensson 2014")]

0 comments on commit cb0d1ef

Please sign in to comment.