Customize Assembly Info #352

Closed
opened 2026-01-29 16:37:13 +00:00 by claunia · 2 comments
Owner

Originally created by @KaeptnHelmut on GitHub (Jul 1, 2019).

Originally assigned to: @GregorBiswanger on GitHub.

(How) is it possible to set the company inside the assembly info? Is there a possibillity to add "company": "My Company Name" to manifest.json file?

Thanks in advance!

Originally created by @KaeptnHelmut on GitHub (Jul 1, 2019). Originally assigned to: @GregorBiswanger on GitHub. (How) is it possible to set the company inside the assembly info? Is there a possibillity to add "company": "My Company Name" to manifest.json file? Thanks in advance!
claunia added the question label 2026-01-29 16:37:13 +00:00
Author
Owner

@BohdanPavliv commented on GitHub (Oct 24, 2019):

Yes, but how do you want to use it? It's any variable?

@BohdanPavliv commented on GitHub (Oct 24, 2019): Yes, but how do you want to use it? It's any variable?
Author
Owner

@GregorBiswanger commented on GitHub (May 9, 2020):

Available in Electron.NET 8.31.1 - Please use the new electron.manifest.json file.

{
  "executable": "{{executable}}",
  "splashscreen": {
    "imageFile": ""
  },
  "name": "{{executable}}",
  "author": "",                      <--- Here you can use the company name
  "singleInstance": false,
  "build": {                          <--- alternative use the electron-builder config https://www.electron.build/configuration/configuration
    "appId": "com.{{executable}}.app",
    "productName": "{{executable}}",
    "copyright": "Copyright © 2020",
    "buildVersion": "1.0.0",
    "compression": "maximum",
    "directories": {
      "output": "../../../bin/Desktop"
    },
    "extraResources": [
      {
        "from": "./bin",
        "to": "bin",
        "filter": ["**/*"]
      }
    ],
    "files": [
      {
        "from": "./ElectronHostHook/node_modules",
        "to": "ElectronHostHook/node_modules",
        "filter": ["**/*"]
      },
      "**/*"
    ]
  }
}
@GregorBiswanger commented on GitHub (May 9, 2020): Available in Electron.NET 8.31.1 - Please use the new `electron.manifest.json` file. ``` { "executable": "{{executable}}", "splashscreen": { "imageFile": "" }, "name": "{{executable}}", "author": "", <--- Here you can use the company name "singleInstance": false, "build": { <--- alternative use the electron-builder config https://www.electron.build/configuration/configuration "appId": "com.{{executable}}.app", "productName": "{{executable}}", "copyright": "Copyright © 2020", "buildVersion": "1.0.0", "compression": "maximum", "directories": { "output": "../../../bin/Desktop" }, "extraResources": [ { "from": "./bin", "to": "bin", "filter": ["**/*"] } ], "files": [ { "from": "./ElectronHostHook/node_modules", "to": "ElectronHostHook/node_modules", "filter": ["**/*"] }, "**/*" ] } } ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Electron.NET#352