Layout the CLI SDK in the "1.0.0" instead of "1.0.0-beta-001793"

dotnet host muxer does not support pre-release CLI SDK when no global.json
file is present. So fixing the CLI layout to be in production version
layout. THIS IS A TEMP HACK.
This commit is contained in:
Sridhar Periyasamy 2016-03-15 15:07:47 -07:00
parent 2ce679c57d
commit 3ec1f4f54b
2 changed files with 7 additions and 1 deletions

View file

@ -12,6 +12,7 @@
public string SimpleVersion => $"{Major}.{Minor}.{Patch}.{CommitCountString}";
public string VersionSuffix => $"{ReleaseSuffix}-{CommitCountString}";
public string NuGetVersion => $"{Major}.{Minor}.{Patch}-{VersionSuffix}";
public string ProductionVersion => $"{Major}.{Minor}.{Patch}";
public string GenerateMsiVersion()
{