Skip to content

Commit bd0ebfd

Browse files
authored
fix(vsix): manifest fixes for marketplace publishing (#38)
1 parent ce72894 commit bd0ebfd

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
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: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@
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>
12-
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)">
12+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 19.0)">
1313
<ProductArchitecture>amd64</ProductArchitecture>
1414
</InstallationTarget>
15+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 19.0)">
16+
<ProductArchitecture>arm64</ProductArchitecture>
17+
</InstallationTarget>
1518
</Installation>
1619
<Prerequisites>
1720
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[17.0,)" DisplayName="Visual Studio core editor" />

0 commit comments

Comments
 (0)