Fixed an issue which was introduced by renaming the assemblies, the confluence icon could not be found.

This commit is contained in:
Robin Krom 2021-10-16 23:06:25 +02:00
commit b37b123e8e
No known key found for this signature in database
GPG key ID: BCC01364F1371490

View file

@ -51,7 +51,7 @@ namespace Greenshot.Plugin.Confluence
IsInitialized = false; IsInitialized = false;
try try
{ {
Uri confluenceIconUri = new Uri("/GreenshotConfluencePlugin;component/Images/Confluence.ico", UriKind.Relative); Uri confluenceIconUri = new Uri("/Greenshot.Plugin.Confluence;component/Images/Confluence.ico", UriKind.Relative);
using (Stream iconStream = Application.GetResourceStream(confluenceIconUri)?.Stream) using (Stream iconStream = Application.GetResourceStream(confluenceIconUri)?.Stream)
{ {
// TODO: Check what to do with the IImage // TODO: Check what to do with the IImage