I searched the IDE and online but didn't find anything so I'm asking:
Is there any way to change the application icon of the executable file for the current project in JetBrains Rider?
Right-click the original EXE file (not the copy you made) and choose “Open using Resource Hacker.” In the Resource Hacker window, select the “Icon” folder in the left pane. Click the “Action” menu and then select “Replace Icon.”
If you hide the main menu, you can still access it with the corresponding action: press Ctrl+Shift+A and search for main menu.
For now, Rider doesn't have UI for that, but you can do it from code. Press F4 on a project or Select "Edit 'YourProjectFile'" from the right-click menu to edit the project file and add these lines into the Project element:
<PropertyGroup>
<ApplicationIcon>YourIcon.ico</ApplicationIcon>
</PropertyGroup>
YourIcon.ico
is the project directory based path where your icon is located.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With