Flufy
Flufy

Reputation: 319

How to change the icon of published c# app

I published my wpf app, but I get this icon:

enter image description here

How do I replace this icon, and also the setup name from visual studio?

I tried: right click on the project--> properties--> application-->icon and manifest-->and browsed to my icon.

but this changed only the icon on top of the window, like:

enter image description here

Upvotes: 1

Views: 1784

Answers (1)

mm8
mm8

Reputation: 169400

I am afraid ClickOnce is not very customizable. You can change the icon of setup.exe after the application has been published as suggested by @Equalsk here:

How to change Setup.exe icon when publishing through clickonce

Then you can also change the name of the file:

How to rename setup file in ClickOnce?

Upvotes: 2

Related Questions