Forum Discussion
i have changed my bot app icon in bot framework but it is not reflecting in my bot app when i run
To change the app icon for your bot in Microsoft Teams, you need to update the icons
section in your app's manifest file. The icons
section contains two properties: color
and outline
. These properties should point to the location of your new icon files.
Here's how you can do it:
-
Replace the
color.png
andoutline.png
files in your project with your new icon files. Make sure that the new files are namedcolor.png
andoutline.png
respectively. -
Update the
icons
section in your app's manifest file to point to the new icon files. If your icon files are located at the root of your project, youricons
section should look like this:
"icons": {
"color": "color.png",
"outline": "outline.png"
}
- Save the changes to your manifest file and re-upload the app package to Teams.
Ref Doc: app manifest schema for Microsoft Teams.
Thanks,
Nivedipa
-------------------------------------------------------------------------
If the response is helpful, please click Mark as Best Response and like it. You can share your feedback via Microsoft Teams Developer Feedback link. Click here to escalate.