Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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