From 63795f1c2cfc6a45e716da37ef6c9219be0260ab Mon Sep 17 00:00:00 2001 From: Erik Darling <2136037+erikdarlingdata@users.noreply.github.com> Date: Wed, 11 Mar 2026 16:00:41 -0400 Subject: [PATCH] Embed application icon in exe for taskbar pinning (#85) Add to csproj so the icon is embedded in the PE resources. Without this, Windows falls back to the default app icon when the application is pinned to the taskbar. Closes #85 Co-Authored-By: Claude Opus 4.6 --- src/PlanViewer.App/PlanViewer.App.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PlanViewer.App/PlanViewer.App.csproj b/src/PlanViewer.App/PlanViewer.App.csproj index 4bdf48c..46f6770 100644 --- a/src/PlanViewer.App/PlanViewer.App.csproj +++ b/src/PlanViewer.App/PlanViewer.App.csproj @@ -4,6 +4,7 @@ net8.0 enable app.manifest + EDD.ico true 1.1.0 Erik Darling