Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove ".NET" from AppIcon

Tags:

maui

I have a .NET MAUI App with an AppIcon which should be displayed as it is. Unfortunately, I can see a white-colored ".NET" logo inside this AppIcon.

How can I get rid of that?

=========== Added Icon to see the wrong effect =================

enter image description here

like image 484
OXO Avatar asked Sep 13 '25 23:09

OXO


1 Answers

You can check this article about how to change the App icon. You can define the App icon by yourself.

Here is the code below:

<ItemGroup>
    <MauiIcon Include="Resources\AppIcon\appicon.svg" />
</ItemGroup>
like image 193
Guangyu Bai - MSFT Avatar answered Sep 17 '25 20:09

Guangyu Bai - MSFT