-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic version info to win32 dll. (#2592)
- Loading branch information
1 parent
2f9da4a
commit 5c7b313
Showing
6 changed files
with
125 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#include <winver.h> | ||
|
||
#define VER_FILEVERSION 3,10,349,0 | ||
#define VER_FILEVERSION_STR "3.10.349.0\0" | ||
|
||
#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", "react-native-win32.dll" | ||
VALUE "LegalCopyright", "(c) Microsoft Corporation. All rights reserved." | ||
VALUE "OriginalFilename", "react-native-win32.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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters