18 lines
525 B
Plaintext
18 lines
525 B
Plaintext
#include <windows.h>
|
|
#include "Version.h"
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "DiskSpd Storage Performance Tool"
|
|
#define VER_INTERNALNAME_STR "XmlResultParser.UnitTests.dll"
|
|
|
|
#undef VER_PRODUCTVERSION
|
|
#define VER_PRODUCTVERSION DISKSPD_MAJOR,DISKSPD_MINOR,DISKSPD_BUILD,DISKSPD_QFE
|
|
|
|
#undef VER_PRODUCTVERSION_STR
|
|
#define VER_PRODUCTVERSION_STR DISKSPD_NUMERIC_VERSION_STRING
|
|
|
|
#include "common.ver"
|