Skip to content

Commit 1263643

Browse files
committed
Add support for VS2026
Fixes #17
1 parent 0ce12bb commit 1263643

5 files changed

Lines changed: 16 additions & 11 deletions

File tree

Dev17/Dev17+.csproj

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,13 @@
8585
<Reference Include="WindowsBase" />
8686
</ItemGroup>
8787
<ItemGroup>
88-
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.0.0-previews-3-31605-261" ExcludeAssets="runtime" />
89-
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.0.4207-preview4" />
88+
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.14.40265" ExcludeAssets="runtime">
89+
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
90+
</PackageReference>
91+
<PackageReference Include="Microsoft.VSSDK.BuildTools" Version="17.14.2120">
92+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
93+
<PrivateAssets>all</PrivateAssets>
94+
</PackageReference>
9095
</ItemGroup>
9196
<ItemGroup>
9297
<Content Include="..\SharedContent\openfileinsolution.png">

Dev17/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
// You can specify all the values or you can default the Revision and Build Numbers
3030
// by using the '*' as shown below:
3131

32-
[assembly: AssemblyVersion("1.15.4.0")]
33-
[assembly: AssemblyFileVersion("1.15.4.0")]
32+
[assembly: AssemblyVersion("1.16.0.0")]
33+
[assembly: AssemblyFileVersion("1.16.0.0")]
3434

3535

3636

Dev17/source.extension.vsixmanifest

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="Dev17.fe76fd33-c38d-4ead-be65-75c060862f5b" Version="1.15.4" Language="en-US" Publisher="Pernicious Games" />
4+
<Identity Id="Dev17.fe76fd33-c38d-4ead-be65-75c060862f5b" Version="1.16.0" Language="en-US" Publisher="Pernicious Games" />
55
<DisplayName>Open File In Solution</DisplayName>
66
<Description xml:space="preserve">Shows a list of all files in the current solution and allows quickly filtering and opening them.</Description>
77
<License>SharedContent\LICENSE</License>
88
<Tags>open file, quick find, fast find, fast open, openfile, quick open, quickopen, shift alt o, shift+alt+o, visual assist</Tags>
99
</Metadata>
1010
<Installation>
11-
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)">
11+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 19.0)">
1212
<ProductArchitecture>amd64</ProductArchitecture>
1313
</InstallationTarget>
14-
<InstallationTarget Version="[17.0,18.0)" Id="Microsoft.VisualStudio.IntegratedShell">
14+
<InstallationTarget Version="[17.0,19.0)" Id="Microsoft.VisualStudio.IntegratedShell">
1515
<ProductArchitecture>amd64</ProductArchitecture>
1616
</InstallationTarget>
1717
</Installation>
1818
<Dependencies>
1919
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.7.2,)" />
2020
</Dependencies>
2121
<Prerequisites>
22-
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[17.0,18.0)" DisplayName="Visual Studio core editor" />
22+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[17.0,19.0)" DisplayName="Visual Studio core editor" />
2323
</Prerequisites>
2424
<Assets>
2525
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
// You can specify all the values or you can default the Revision and Build Numbers
3030
// by using the '*' as shown below:
3131

32-
[assembly: AssemblyVersion("1.15.4.0")]
33-
[assembly: AssemblyFileVersion("1.15.4.0")]
32+
[assembly: AssemblyVersion("1.16.0.0")]
33+
[assembly: AssemblyFileVersion("1.16.0.0")]
3434

3535

3636

source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="6bb18fff-9e74-4deb-97df-6a94ddafb74e" Version="1.15.4" Language="en-US" Publisher="Pernicious Games" />
4+
<Identity Id="6bb18fff-9e74-4deb-97df-6a94ddafb74e" Version="1.16.0" Language="en-US" Publisher="Pernicious Games" />
55
<DisplayName>Open File In Solution</DisplayName>
66
<Description xml:space="preserve">Shows a list of all files in the current solution and allows quickly filtering and opening them.</Description>
77
<License>SharedContent\LICENSE</License>

0 commit comments

Comments
 (0)