Skip to content

Commit 552d2e1

Browse files
committed
fix(vsix): correct icon path in manifest
- Update vsixmanifest to reference logo.png instead of missing Icon.png - Add IncludeInVSIX=true to ensure images are included in package
1 parent ce72894 commit 552d2e1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/CodingWithCalvin.ProjectRenamifier/CodingWithCalvin.ProjectRenamifier.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,11 @@
138138
<ItemGroup>
139139
<Content Include="..\..\resources\folder-icon.png">
140140
<Link>Resources\folder-icon.png</Link>
141+
<IncludeInVSIX>true</IncludeInVSIX>
141142
</Content>
142143
<Content Include="..\..\resources\logo.png">
143144
<Link>Resources\logo.png</Link>
145+
<IncludeInVSIX>true</IncludeInVSIX>
144146
</Content>
145147
</ItemGroup>
146148
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

src/CodingWithCalvin.ProjectRenamifier/source.extension.vsixmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<DisplayName>VS-ProjectRenamifier</DisplayName>
66
<Description xml:space="preserve">Project Renamifier!</Description>
77
<License>Resources\LICENSE</License>
8-
<Icon>Resources\Icon.png</Icon>
9-
<PreviewImage>Resources\Icon.png</PreviewImage>
8+
<Icon>Resources\logo.png</Icon>
9+
<PreviewImage>Resources\logo.png</PreviewImage>
1010
</Metadata>
1111
<Installation>
1212
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)">

0 commit comments

Comments
 (0)