Custom executable icon for `deno compile`?
Is it possible to set a different icon rather than the default deno icon for the executable generated from
deno compile?deno compile command does not provide an option to customize the icon of the generated executable directly through its command-line interface or API."" was unecessery. I noticed that in the properties of the .exe for example the Description was not . I removed the quotation marks and it works perfectly.appThe first character of the ProductVersion must be a number.
FileVersion can only contain numbers and dots, and must begin with a number.Fatal error: Unable to set icon"UniConvert"UniConvert{args: ['--LegalCopyright', 'OhHellNaw']}{args: ['--LegalCopyright=OhHellNaw']}const {stdout, stderr} = new Deno.Command('wincompile.cmd', {args: [blablabla keep your args here],
stdout: 'piped',
stderr: 'piped',
}).outputSync();
if (stdout.length) console.log(new TextDecoder().decode(stdout));
if (stderr.length) console.log(new TextDecoder().decode(stderr));