Skip to content

Commit

Permalink
Add preview to the version output (microsoft#101)
Browse files Browse the repository at this point in the history
Adding Preview to the version tag as requested.
  • Loading branch information
jamespik authored May 6, 2020
1 parent dd38bbc commit 3eefd8d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/AppInstallerCLICore/Command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ namespace AppInstaller::CLI

void Command::OutputIntroHeader(Execution::Reporter& reporter) const
{
// TODO: When these strings are ported to resource file,
// Create both a Preview and a Non-Preview string. That way we can swap the value without
// incurring additional localization cost.
reporter.Info() <<
"Windows Package Manager v" << Runtime::GetClientVersion() << std::endl <<
"Windows Package Manager v" << Runtime::GetClientVersion() << " Preview"<< std::endl <<
"Copyright (c) Microsoft Corporation. All rights reserved." << std::endl;
}

Expand Down

0 comments on commit 3eefd8d

Please sign in to comment.