Skip to content

Commit

Permalink
Replace GVFS with Scalar in ReadObjectHook
Browse files Browse the repository at this point in the history
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
  • Loading branch information
derrickstolee committed Aug 29, 2019
1 parent bdd2a24 commit 8b9b505
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Scalar.Build/GenerateVersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ public override bool Execute()
this.VersionHeader,
string.Format(
@"
#define GVFS_FILE_VERSION {0}
#define GVFS_FILE_VERSION_STRING ""{1}""
#define GVFS_PRODUCT_VERSION {0}
#define GVFS_PRODUCT_VERSION_STRING ""{1}""
#define SCALAR_FILE_VERSION {0}
#define SCALAR_FILE_VERSION_STRING ""{1}""
#define SCALAR_PRODUCT_VERSION {0}
#define SCALAR_PRODUCT_VERSION_STRING ""{1}""
",
commaDelimetedVersion,
this.Version));
Expand Down
16 changes: 8 additions & 8 deletions Scalar.ReadObjectHook/Version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION GVFS_FILE_VERSION
PRODUCTVERSION GVFS_PRODUCT_VERSION
FILEVERSION SCALAR_FILE_VERSION
PRODUCTVERSION SCALAR_PRODUCT_VERSION
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,13 +68,13 @@ BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Microsoft"
VALUE "FileDescription", "GVFS.ReadObjectHook"
VALUE "FileVersion", GVFS_FILE_VERSION_STRING
VALUE "InternalName", "GVFS.ReadObjectHook.exe"
VALUE "FileDescription", "Scalar.ReadObjectHook"
VALUE "FileVersion", SCALAR_FILE_VERSION_STRING
VALUE "InternalName", "Scalar.ReadObjectHook.exe"
VALUE "LegalCopyright", "Copyright (c) Microsoft 2019"
VALUE "OriginalFilename", "GVFS.ReadObjectHook.exe"
VALUE "ProductName", "GVFS.ReadObjectHook"
VALUE "ProductVersion", GVFS_PRODUCT_VERSION_STRING
VALUE "OriginalFilename", "Scalar.ReadObjectHook.exe"
VALUE "ProductName", "Scalar.ReadObjectHook"
VALUE "ProductVersion", SCALAR_PRODUCT_VERSION_STRING
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 8b9b505

Please sign in to comment.