mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
How to change/customize appname and author #383
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @benlemond on GitHub (Sep 20, 2019).
Originally assigned to: @GregorBiswanger on GitHub.
I have downloaded ElectronNET-API-Demos. I have gotten it running simply enough. My problem is that I am new and I am trying to figure out how to customize an installer build in order to deploy my custom application.
I have run
electronize build /target winand I have created a "electron.net.host Setup 1.0.2.exe" file under "ElectronNET-API-Demos\obj\desktop\win\dist". My question is which package.json files (or other files) do I need to customize in order to change the Author and other properties about the build for my exe?@nareshjois commented on GitHub (Sep 30, 2019):
@benlemond you can start with the
electron.manifest.jsonfrom the root folder and if you want to use a custom package.json you can use/package-json <customJson>from the prompt@TirumaleswaraReddy commented on GitHub (Jan 9, 2020):
I too have the same problem, I'm able to create setup file but setup file having description and company name are wrong. Can you please support me how to customize description and company


@GregorBiswanger commented on GitHub (Feb 29, 2020):
I just tested that electron-builder doesn't just let the names and authors be configured externally. This would normally be done using the extraMetadata setting.
I will add this as a new feature for the upcoming Electron.NET version, which you can easily do in the
electron.manifest.jsonfile.Current workaround to the solution: While you are executing the following command, for example,
electronize build /target win- can you be active, before electron-builder becomes active at the end, quickly exchange thepackage.jsonwith your own data. You can find the current file underPROJECTFOLDER/obj/desktop/win/package.json- write your desired name for app name and your author name there.Please give me your feedback on whether it worked for you.
@zenith6495 commented on GitHub (Mar 1, 2020):
Actually as @Tum4ik mentioned in the chat before, a better temporary workaround solution would be as follow:-
you should modify the author property in your package.json file and pass the package.json file during your build via command electronize build /target win /package-json package.json
@zenith6495 commented on GitHub (Apr 19, 2020):
@GregorBiswanger is this issue fixed in the latest version 8. 31.1? What's the new electron.manifest.json file look like?
@GregorBiswanger commented on GitHub (Apr 21, 2020):
You can set a name and author of the app in
electron.manifest.jsonwith the new Electron.NET version 8.31.1 (#348 )As example: