From c98fee7b5b83cf58d8fb61164bffcdc97a7734e3 Mon Sep 17 00:00:00 2001 From: PointStar Date: Tue, 12 May 2026 20:28:19 +0300 Subject: [PATCH] fix(csproj): re-add klear-attach.png embed entry (VS save stripped it) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Visual Studio rewrote the legacy VSTO csproj on its next save and dropped the EmbeddedResource entry for the paperclip icon — without it the new SaveAttachments ribbon button has no image at runtime and the file isn't shipped in the assembly. Add it back next to the four other Klear icons. --- src/OutlookAddin/OutlookAddin.csproj | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/OutlookAddin/OutlookAddin.csproj b/src/OutlookAddin/OutlookAddin.csproj index f80fc66..66eaf3f 100644 --- a/src/OutlookAddin/OutlookAddin.csproj +++ b/src/OutlookAddin/OutlookAddin.csproj @@ -270,6 +270,9 @@ OutlookAddin.Images.klear-compose.png + + OutlookAddin.Images.klear-attach.png + Code