简体   繁体   中英

Change icon of generated exe

I'm generating an executable file with VB.NET using CodeDomProvider.

Is there a way to change the icon before the compiler creates the exe file?

You can set the icon of the generated exe by specifying it in the CompilerParameters that you pass to the code provider, using the CompilerOptions property.

Dim parameters As New CompilerParameters()
parameters.CompilerOptions = "/win32icon:C:\full\path\to\icon.ico"

You then pass these parameters to the CompileAssemblyFromSource method. The generated exe will then use the specified icon as its application icon.

Go into the project properties and select the icon from there. Simple as that.

You can use RessourcesHacker AFTER the generation. Not the easiest way, but it works great

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM