Support <PackageIcon> in SeqApp packages #1093
Replies: 6 comments
-
in my csproj file I use the <PackageIcon>content/LeafAcorn_100_web.ico</PackageIcon> and <ItemGroup>
<!-- irrelevant items omitted -->
<None Include="LeafAcorn_100_web.ico" Pack="true" PackagePath="content" />
</ItemGroup> |
Beta Was this translation helpful? Give feedback.
-
Thanks for the suggestion 👍 The current packaging implementation does support |
Beta Was this translation helpful? Give feedback.
-
I believe I tried PackageIconUrl also and it also did not work, but I'll double check that. |
Beta Was this translation helpful? Give feedback.
-
👍 thanks for the follow-up. This one is: https://github.com/datalust/seq-apps/blob/master/src/Seq.App.EmailPlus/Seq.App.EmailPlus.nuspec#L12 (using the old NuSpec format, but setting the same field). |
Beta Was this translation helpful? Give feedback.
-
Using IconUrl from a package is not very useful in offline environments, but not a big deal. |
Beta Was this translation helpful? Give feedback.
-
Thanks @vlm--- - yes, definitely some good reasons to support the new mechanism 👍 |
Beta Was this translation helpful? Give feedback.
-
The nuget specification allows you to embed a project image into your nuget package. It looks like Seq doesn't respect this though and still just gives you a default image for your custom app.
It would be nice if Seq would support our custom app images instead of only being able to use the default.
Beta Was this translation helpful? Give feedback.
All reactions