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
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,11 @@ jobs:
# that rejects the manifest ("version Invalid"); a clean OPC vsix (manifest +
# payload) installs. The payload ZIP above still ships them for the installer.
Remove-Item "$vsixStaging/catalog.json","$vsixStaging/manifest.json" -Force -ErrorAction SilentlyContinue
# Icon + license for the gallery listing. extension.vsixmanifest.v2
# references icon.png/LICENSE.txt; both must live inside the .vsix (and
# need content types below). Reuse the repo logo and Apache LICENSE.
Copy-Item ".github/logo.png" "$vsixStaging/icon.png" -Force
Copy-Item "LICENSE" "$vsixStaging/LICENSE.txt" -Force
# Build the content as an indented array-join (NOT a column-0 here-string,
# which would break this YAML literal block). Single-quoted lines keep the
# XML angle brackets/quotes literal.
Expand All @@ -181,6 +186,8 @@ jobs:
' <Default Extension="json" ContentType="application/json" />'
' <Default Extension="dll" ContentType="application/octet-stream" />'
' <Default Extension="pkgdef" ContentType="text/plain" />'
' <Default Extension="png" ContentType="image/png" />'
' <Default Extension="txt" ContentType="text/plain" />'
'</Types>'
) -join "`r`n"
# Brackets in the filename are PowerShell wildcards — must use -LiteralPath.
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<PropertyGroup>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Copyright>Copyright (c) 2026 SQL Pilot Contributors</Copyright>
<Copyright>Copyright (c) 2026 Christian Mourier</Copyright>
<Company>SQL Pilot</Company>
<Product>SQL Pilot</Product>
<Authors>SQL Pilot Contributors</Authors>
<Authors>Christian Mourier</Authors>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion src/SqlPilot.Package/extension.vsixmanifest.v1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Vsix xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="1.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2010">
<Identifier Id="SqlPilot.8f4a3b2e-1c5d-4e6f-9a0b-7d8c2e3f4a5b">
<Name>SQL Pilot</Name>
<Author>SQL Pilot Contributors</Author>
<Author>Christian Mourier</Author>
<Version>1.0.0</Version>
<Description xml:space="preserve">Quick Search Tool for SQL Server Management Studio</Description>
<Locale>1033</Locale>
Expand Down
4 changes: 3 additions & 1 deletion src/SqlPilot.Package/extension.vsixmanifest.v2
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
<Identity Id="SqlPilot.8f4a3b2e-1c5d-4e6f-9a0b-7d8c2e3f4a5b"
Version="1.0.0"
Language="en-US"
Publisher="SQL Pilot Contributors" />
Publisher="Christian Mourier" />
<DisplayName>SQL Pilot</DisplayName>
<Description xml:space="preserve">Quick Search Tool for SQL Server Management Studio</Description>
<License>LICENSE.txt</License>
<Icon>icon.png</Icon>
</Metadata>
<Installation>
<InstallationTarget Version="[21.0,23.0)" Id="Microsoft.VisualStudio.Ssms">
Expand Down
3 changes: 2 additions & 1 deletion src/SqlPilot.Package/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
<Identity Id="SqlPilot.8f4a3b2e-1c5d-4e6f-9a0b-7d8c2e3f4a5b"
Version="1.0.0"
Language="en-US"
Publisher="SQL Pilot Contributors" />
Publisher="Christian Mourier" />
<DisplayName>SQL Pilot</DisplayName>
<Description xml:space="preserve">Quick Search Tool for SQL Server Management Studio. Rapidly find tables, views, stored procedures, and functions across all databases.</Description>
<MoreInfo>https://github.com/mourier/sql-pilot</MoreInfo>
<License>LICENSE</License>
<Icon>icon.png</Icon>
<Tags>SQL, SSMS, Search, Database, Quick Find</Tags>
</Metadata>
<Installation>
Expand Down
Loading