Skip to content

Commit 672c01e

Browse files
committed
Provide custom Vsix class summary
This reflects better where the values are coming from.
1 parent 9558384 commit 672c01e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/ThisAssembly.Vsix/ThisAssembly.Vsix.targets

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
By setting this property, we will always succeed independently of the value of $(CreateVsixContainer),
1010
$(DeployExtension) and $(CopyVsixExtensionFiles) -->
1111
<CopyVsixManifestToOutput>true</CopyVsixManifestToOutput>
12+
13+
<ThisAssemblyVsixComment>Provides access to source.extension.vsixmanifest values.</ThisAssemblyVsixComment>
1214
</PropertyGroup>
1315

1416
<ItemGroup>
@@ -59,13 +61,12 @@
5961
<Output TaskParameter="Result" PropertyName="VsixPublisher" />
6062
</XmlPeek>
6163

62-
6364
<ItemGroup>
64-
<Constant Include="Vsix.Id" Value="$(VsixID)" Root="." />
65-
<Constant Include="Vsix.Name" Value="$(VsixName)" Root="." />
66-
<Constant Include="Vsix.Description" Value="$(VsixDescription)" Root="." />
67-
<Constant Include="Vsix.Publisher" Value="$(VsixPublisher)" Root="." />
68-
<Constant Include="Vsix.Version" Value="$(VsixVersion)" Root="." />
65+
<Constant Include="Vsix.Id" Value="$(VsixID)" Root="." RootComment="$(ThisAssemblyVsixComment)" />
66+
<Constant Include="Vsix.Name" Value="$(VsixName)" Root="." RootComment="$(ThisAssemblyVsixComment)" />
67+
<Constant Include="Vsix.Description" Value="$(VsixDescription)" Root="." RootComment="$(ThisAssemblyVsixComment)" />
68+
<Constant Include="Vsix.Publisher" Value="$(VsixPublisher)" Root="." RootComment="$(ThisAssemblyVsixComment)" />
69+
<Constant Include="Vsix.Version" Value="$(VsixVersion)" Root="." RootComment="$(ThisAssemblyVsixComment)" />
6970
</ItemGroup>
7071

7172
</Target>

0 commit comments

Comments
 (0)