Delphi I would like to make an EXE that has no icon resource
1 answer
Open the file .dproj
in Notepad or similar editor and remove the tags
<Icon_MainIcon>...</Icon_MainIcon>
With this approach, your project will still have version information as well as runtime themes (or custom manifests).
If you want to add the icon back, just go to Project Options -> Application
and upload your file or use the default icon.
+2
source to share