-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathgraphqljson_version.rc
43 lines (38 loc) · 1.28 KB
/
graphqljson_version.rc
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
41
42
43
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include <winver.h>
#define GRAPHQL_RC_VERSION 3,6,0,0
#define GRAPHQL_RC_VERSION_STR "3.6.0"
#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION GRAPHQL_RC_VERSION
PRODUCTVERSION GRAPHQL_RC_VERSION
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS VER_DEBUG
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904B0"
BEGIN
VALUE "CompanyName", "Microsoft Corporation"
VALUE "FileDescription", "Shared library for https://github.com/microsoft/cppgraphqlgen"
VALUE "FileVersion", GRAPHQL_RC_VERSION_STR
VALUE "InternalName", "graphqljson"
VALUE "LegalCopyright", "Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License."
VALUE "OriginalFilename", "graphqljson.dll"
VALUE "ProductName", "CppGraphQLGen"
VALUE "ProductVersion", GRAPHQL_RC_VERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END