Bobby
Bobby

Reputation: 11576

VS2008, no embedded application icon?

I'm using Visual Studio 2008 and I can set the application icon using the My Project -> Application - Tab with a path. But, is there any way to set the application icon to an embedded resource instead of the file itself? 'cause it seems like that VS is embedding the icon again just for this purpose, instead of reusing an already embedded resource.

Upvotes: 2

Views: 716

Answers (1)

Richard
Richard

Reputation: 109080

The application icon needs to be a native (Win32) resource in the .exe (or .dll) file. This is extracted by the shell using the native resource APIs.

But the resources that VS embeds in an assembly are managed (.NET) resources.

(I.e. there are multiple ways of embedding a resource in a .exe or .dll and you need to use the right way.)

VS will show you the native resources if you open the assembly file directly. .NET Reflector will show you the managed resources.

Upvotes: 4

Related Questions