Is there a way to specify the application icon for the ClickOnce application manifest using Mage / MageUI?

I need to specify the application icon for ClickOnce deployment. Basically it will be the icon shown for the application shortcut in the Start menu - "Program Files", also during application installation. I can do this from the Visual Studio IDE (by specifying the application icon on the application tab of the project properties).

But I can't figure out how to do this using Mage / MageUI. Is there a way to do this using Mage / MageUI?

+5
source share
1 answer

On the command line from here - for example

mage -New Application -ToFile MyApplication.exe.manifest -Name "My Application" -Version 1.0.0.0 -FromDirectory bin -IconFile ApplicationIcon.ico

MageUI - " " " " "".

+7

All Articles