Skip to content

Commit

Permalink
Removed words from version string.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxwolf committed Oct 27, 2016
1 parent 2a9ec45 commit 9cc0eeb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion WolfCurses.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>wolfcurses</id>
<version>2.0.0-*</version>
<version>2.0.0.*</version>
<authors>Maxwolf</authors>
<description>Wolf curses is a console control library for .Net/Mono, enabling the construction of text user interface (TUI) applications.</description>
<language>en-US</language>
Expand Down
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Task ("build").IsDependentOn ("clean").Does (() =>
OutputDirectory = "nupkg",
Verbose = true,
NoBuild = true,
VersionSuffix = "ci-" + (EnvironmentVariable("BUILD_NUMBER") ?? "0")
VersionSuffix = EnvironmentVariable("BUILD_NUMBER") ?? "0"
};

DotNetCorePack(json, packSettings);
Expand Down
2 changes: 1 addition & 1 deletion project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"copyright": "Maxwolf",
"description": "Console control library",
"language": "en-US",
"version": "2.0.0-*",
"version": "2.0.0.*",
"buildOptions": {
"optimize": true,
"xmlDoc": true
Expand Down

0 comments on commit 9cc0eeb

Please sign in to comment.