Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions src/PlanViewer.Ssms/PlanViewer.Ssms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@
</ItemGroup>
<ItemGroup>
<Content Include="Resources\AnalyzePlanCommand.png" />
<Content Include="Resources\PerformanceStudioIcon.png">
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="..\..\LICENSE">
<Link>LICENSE</Link>
<IncludeInVSIX>true</IncludeInVSIX>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/PlanViewer.Ssms/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@
<Description xml:space="preserve">Adds "Open in Performance Studio" to the execution plan right-click menu in SSMS. Extracts the plan XML and opens it in Performance Studio for advanced analysis.</Description>
<MoreInfo>https://github.com/erikdarlingdata/PerformanceStudio</MoreInfo>
<License>LICENSE</License>
<Icon>Resources\PerformanceStudioIcon.png</Icon>
<Tags>SQL Server, Execution Plan, Performance, SSMS</Tags>
</Metadata>
<Installation>
<!-- SSMS 21 = product line 21, SSMS 22.3+ = product line 22 (VS 18.0 shell) -->
<InstallationTarget Id="Microsoft.VisualStudio.Ssms" Version="[17.0,)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Ssms" Version="[17.0,)">
<ProductArchitecture>arm64</ProductArchitecture>
</InstallationTarget>
</Installation>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor"
Expand Down