Skip to content

Commit

Permalink
Use correct version (#25821) (#25827)
Browse files Browse the repository at this point in the history
  • Loading branch information
kburtram authored Aug 13, 2024
1 parent 6e6d22d commit a47e330
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build/gulpfile.vscode.win32.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,16 +196,16 @@ function updateExeIconAndMetadata(arch) {

var patch = {
"version-string": {
CompanyName: config.companyName || "GitHub, Inc.",
CompanyName: config.companyName || "Microsoft",
FileDescription: config.productAppName || opts.productName,
LegalCopyright:
config.copyright ||
"Copyright (C) 2014 GitHub, Inc. All rights reserved",
"Copyright (C) 2024 Microsoft, All rights reserved",
ProductName: config.productAppName || config.productName,
ProductVersion: config.productVersion,
ProductVersion: pkg.version,
},
"file-version": config.productVersion,
"product-version": config.productVersion,
"file-version": pkg.version,
"product-version": pkg.version,
"icon": config.winIcon
};

Expand Down

0 comments on commit a47e330

Please sign in to comment.