vote up 2 vote down star
1

I have a console application, I want to include an ico file as an embedded resource in the exe, then have it as the programs icon in windows explorer, how is this done?

flag

dupe: stackoverflow.com/questions/1530130/… – Shay Erlichmen Oct 12 at 16:26
I think that is a misuse of the embedded tag. It generally refers to 'embedded systems' – Clifford Oct 12 at 19:21

3 Answers

vote up 2 vote down check

Hello JL,

If you right click on your actual project that you want to change the final icon and select properties at the pop-up menu, then the main screen will change to the properties file edit, in the screen that appeared, at the botton you will see that you can select the icon to use in the application, select it and when you compile your project, at the release type you will see that the application have the icon that you selected.

Regards.

link|flag
vote up 1 vote down

The icon displayed in windows explorer for any .net application is the assembly icon which can be set in the project settings in visual studio.

link|flag
vote up 1 vote down

In the project settings page for your Console Application, go to the Application Page.

Under "Icon and Manifest", click on the [...] button next to where it says (Default Icon), and pick your Icon. Rebuild your app.

This will give your console application a custom icon.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.