#include <base/Application.h>
#include <base/string/FormatOutputStream.h>
#include <base/Version.h>
using namespace com::azure::dev::base;
private:
static const unsigned int MAJOR_VERSION = 1;
static const unsigned int MINOR_VERSION = 0;
public:
VersionApplication()
{
}
void main()
{
fout << getFormalName() << " version "
<< MAJOR_VERSION << '.' << MINOR_VERSION << EOL
<< "The Base Framework (Test Suite)" << EOL
<< EOL
}
};
APPLICATION_STUB(VersionApplication);