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.
77 lines
3.6 KiB
XML
77 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
HellionChat — DalamudPackager override.
|
|
|
|
The default DalamudPackager.targets shipped by the SDK does not set
|
|
HandleImages / ImagesPath, so the images/ directory is silently
|
|
excluded from the release ZIP. The presence of this file at
|
|
$(ProjectDir)DalamudPackager.targets disables the SDK's default
|
|
target (it guards on `!Exists('$(PackagerTargetFile)')`) and lets
|
|
us call the packager task ourselves with the image fields wired in.
|
|
|
|
Apart from HandleImages + ImagesPath the property list mirrors the
|
|
SDK default verbatim so we don't lose any other manifest field as
|
|
the upstream SDK evolves.
|
|
-->
|
|
<Project>
|
|
<Target Name="HellionDalamudPackagerDebug"
|
|
AfterTargets="Build"
|
|
Condition="'$(Configuration)' == 'Debug'">
|
|
<DalamudPackager ProjectDir="$(ProjectDir)"
|
|
OutputPath="$(OutputPath)"
|
|
AssemblyName="$(AssemblyName)"
|
|
MakeZip="false"
|
|
Author="$(Author)"
|
|
Name="$(Name)"
|
|
MinimumDalamudVersion="$(MinimumDalamudVersion)"
|
|
Punchline="$(Punchline)"
|
|
Description="$(Description)"
|
|
ApplicableVersion="$(ApplicableVersion)"
|
|
RepoUrl="$(RepoUrl)"
|
|
Tags="$(Tags)"
|
|
CategoryTags="$(CategoryTags)"
|
|
DalamudApiLevel="$(DalamudApiLevel)"
|
|
LoadRequiredState="$(LoadRequiredState)"
|
|
LoadSync="$(LoadSync)"
|
|
CanUnloadAsync="$(CanUnloadAsync)"
|
|
LoadPriority="$(LoadPriority)"
|
|
ImageUrls="$(ImageUrls)"
|
|
IconUrl="$(IconUrl)"
|
|
Changelog="$(Changelog)"
|
|
AcceptsFeedback="$(AcceptsFeedback)"
|
|
FeedbackMessage="$(FeedbackMessage)"
|
|
HandleImages="true"
|
|
ImagesPath="$(ProjectDir)images" />
|
|
</Target>
|
|
|
|
<Target Name="HellionDalamudPackagerRelease"
|
|
AfterTargets="Build"
|
|
Condition="'$(Configuration)' == 'Release'">
|
|
<DalamudPackager ProjectDir="$(ProjectDir)"
|
|
OutputPath="$(OutputPath)"
|
|
AssemblyName="$(AssemblyName)"
|
|
MakeZip="true"
|
|
Author="$(Author)"
|
|
Name="$(Name)"
|
|
MinimumDalamudVersion="$(MinimumDalamudVersion)"
|
|
Punchline="$(Punchline)"
|
|
Description="$(Description)"
|
|
ApplicableVersion="$(ApplicableVersion)"
|
|
RepoUrl="$(RepoUrl)"
|
|
Tags="$(Tags)"
|
|
CategoryTags="$(CategoryTags)"
|
|
DalamudApiLevel="$(DalamudApiLevel)"
|
|
LoadRequiredState="$(LoadRequiredState)"
|
|
LoadSync="$(LoadSync)"
|
|
CanUnloadAsync="$(CanUnloadAsync)"
|
|
LoadPriority="$(LoadPriority)"
|
|
ImageUrls="$(ImageUrls)"
|
|
IconUrl="$(IconUrl)"
|
|
Changelog="$(Changelog)"
|
|
AcceptsFeedback="$(AcceptsFeedback)"
|
|
FeedbackMessage="$(FeedbackMessage)"
|
|
HandleImages="true"
|
|
ImagesPath="$(ProjectDir)images" />
|
|
</Target>
|
|
</Project>
|