Skip to content

Commit

Permalink
fix: use productName for FileDescription on Windows (#965)
Browse files Browse the repository at this point in the history
Closes #783
  • Loading branch information
unindented authored and develar committed Dec 2, 2016
1 parent cbf4e04 commit 3b6af52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/winPackager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export class WinPackager extends PlatformPackager<WinBuildOptions> {
const args = [
file,
"--set-version-string", "CompanyName", appInfo.companyName,
"--set-version-string", "FileDescription", appInfo.description,
"--set-version-string", "FileDescription", appInfo.productName,
"--set-version-string", "ProductName", appInfo.productName,
"--set-version-string", "InternalName", path.basename(appInfo.productFilename, ".exe"),
"--set-version-string", "LegalCopyright", appInfo.copyright,
Expand Down

0 comments on commit 3b6af52

Please sign in to comment.