#include #define XSTRINGIZE(s) STRINGIZE(s) #define STRINGIZE(s) #s #ifdef RNW_PKG_VERSION_STR #define VER_FILEVERSION_STR STRINGIZE(RNW_PKG_VERSION_STR) #else #define VER_FILEVERSION_STR "Private Build" #endif #ifndef RNW_PKG_VERSION_MAJOR #define RNW_PKG_VERSION_MAJOR 1000 #endif #ifndef RNW_PKG_VERSION_MINOR #define RNW_PKG_VERSION_MINOR 0 #endif #ifndef RNW_PKG_VERSION_PATCH #define RNW_PKG_VERSION_PATCH 0 #endif #ifndef RNW_PKG_VERSION_MAJOR #define RNW_PKG_VERSION_MAJOR 1000 #endif #ifdef RNW_PKG_VERSION #define VER_FILEVERSION RNW_PKG_VERSION #else #define VER_FILEVERSION RNW_PKG_VERSION_MAJOR,RNW_PKG_VERSION_MINOR,RNW_PKG_VERSION_PATCH,0 #endif #ifndef DEBUG #define VER_DEBUG 0 #else #define VER_DEBUG VS_FF_DEBUG #endif VS_VERSION_INFO VERSIONINFO FILEVERSION VER_FILEVERSION PRODUCTVERSION VER_FILEVERSION FILEFLAGSMASK (VS_FF_DEBUG) FILEFLAGS(VER_DEBUG) FILEOS VOS__WINDOWS32 FILETYPE VFT_DLL FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904E4" BEGIN VALUE "CompanyName", "Microsoft" VALUE "FileDescription", "React-Native-Windows" VALUE "FileVersion", VER_FILEVERSION_STR VALUE "InternalName", "Microsoft.ReactNative.dll" VALUE "LegalCopyright", "(c) Microsoft Corporation. All rights reserved." VALUE "OriginalFilename", "Microsoft.ReactNative.dll" VALUE "ProductName", "React-Native-Windows" VALUE "ProductVersion", VER_FILEVERSION_STR END END BLOCK "VarFileInfo" BEGIN /* The following line should only be modified for localized versions. */ /* It consists of any number of WORD,WORD pairs, with each pair */ /* describing a language,codepage combination supported by the file. */ /* */ /* For example, a file might have values "0x409,1252" indicating that it */ /* supports English language (0x409) in the Windows ANSI codepage (1252). */ VALUE "Translation", 0x409, 1252 END END