10

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?

Pang
  • 9,564
  • 146
  • 81
  • 122
lukger
  • 404
  • 3
  • 11

1 Answers1

17

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.

Pang
  • 9,564
  • 146
  • 81
  • 122