Skip to content

Commit

Permalink
Provide custom Vsix class summary
Browse files Browse the repository at this point in the history
This reflects better where the values are coming from.
  • Loading branch information
kzu committed Sep 30, 2024
1 parent d604382 commit a8824f9
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/ThisAssembly.Vsix/ThisAssembly.Vsix.targets
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
By setting this property, we will always succeed independently of the value of $(CreateVsixContainer),
$(DeployExtension) and $(CopyVsixExtensionFiles) -->
<CopyVsixManifestToOutput>true</CopyVsixManifestToOutput>

<ThisAssemblyVsixComment>Provides access to source.extension.vsixmanifest values.</ThisAssemblyVsixComment>
</PropertyGroup>

<ItemGroup>
Expand Down Expand Up @@ -59,13 +61,12 @@
<Output TaskParameter="Result" PropertyName="VsixPublisher" />
</XmlPeek>


<ItemGroup>
<Constant Include="Vsix.Id" Value="$(VsixID)" Root="." />
<Constant Include="Vsix.Name" Value="$(VsixName)" Root="." />
<Constant Include="Vsix.Description" Value="$(VsixDescription)" Root="." />
<Constant Include="Vsix.Publisher" Value="$(VsixPublisher)" Root="." />
<Constant Include="Vsix.Version" Value="$(VsixVersion)" Root="." />
<Constant Include="Vsix.Id" Value="$(VsixID)" Root="." RootComment="$(ThisAssemblyVsixComment)" />
<Constant Include="Vsix.Name" Value="$(VsixName)" Root="." RootComment="$(ThisAssemblyVsixComment)" />
<Constant Include="Vsix.Description" Value="$(VsixDescription)" Root="." RootComment="$(ThisAssemblyVsixComment)" />
<Constant Include="Vsix.Publisher" Value="$(VsixPublisher)" Root="." RootComment="$(ThisAssemblyVsixComment)" />
<Constant Include="Vsix.Version" Value="$(VsixVersion)" Root="." RootComment="$(ThisAssemblyVsixComment)" />
</ItemGroup>

</Target>
Expand Down

0 comments on commit a8824f9

Please sign in to comment.