81d3c9ca6b
DalamudPackager's default targets do not enable the HandleImages / ImagesPath flags, so the images/ directory was silently excluded from the build output even after the .csproj started copying icon.png next to the DLL. The local Dalamud plugin loader then fell back to the placeholder question-mark icon because there was nothing to load at <plugindir>/images/icon.png. Override the default by dropping a DalamudPackager.targets next to the csproj — its presence disables the SDK's default target, which is guarded on `!Exists($(PackagerTargetFile))`. The override mirrors the SDK property list verbatim and adds HandleImages=true plus ImagesPath=$(ProjectDir)images so the packager actually walks the images directory and copies its contents into both the dev plugin output and the release ZIP. Verified: latest.zip now contains images/icon.png at the expected path; both dev plugins and Custom-Repo installs will render the Hellion logo locally without depending on the remote IconUrl.