✅ [solved] Custom Icon For Application Taskbar Icon
How do I set a custom image that is located at
root/images/icon.ico
for my console based application and for the .exe
icon after build?12 Replies
project properties somewhere
application
Icon
OMG TYSM
another question, the current way that I know how to build the project is to click the build button at the top of the window and go through the publish menu option, but the executable won't run if it's outside of that build folder by itself. How do I correctly build this application so that it's only the
.exe
file and that file holds all the necessary information?publish is fine, you want to tick the option: Produce single file
but you will need to target a runtime
I don't have that option...
The way I do it is
Build Tab > Publish Selection > Select Folder > Select Folder
and then from there, I change the folder location to my own Builds
folder in my root directory, and click finish then it takes me to that small window and I click publish. Am I doing it wrong?
ohhhh thats because my Target runtime
was set to portableHenkypenky#4865
but you will need to target a runtime
Quoted by
<@!246732334282440704> from #Custom Icon For Application Taskbar Icon (click here)
React with ❌ to remove this embed.
absolutely. I just realized I could make multiple profiles, so inside of my builds folder I made sub folders, WindowsBuilds, LinuxBuilds, and MacBuilds so that I could set each folder to each specific profiles run time 😛 tyvm