-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.rc
More file actions
40 lines (35 loc) · 1.36 KB
/
version.rc
File metadata and controls
40 lines (35 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
1 VERSIONINFO
FILEVERSION 1,1,0,27
PRODUCTVERSION 1,1,0,27
FILEOS 0x00000004L
FILETYPE 0x00000001L
#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "04090000"
BEGIN
VALUE "FileDescription", "File truncation utility, use -h"
VALUE "FileVersion", "1, 1, 0, 27"
VALUE "InternalName", "stomp"
VALUE "LegalCopyright", "https://github.com/Corionis/Stomp"
VALUE "ProductName", "stomp"
VALUE "ProductVersion", "1.1.0.27"
VALUE "CompanyName", "Corionis"
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