Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Visual Studio 2022 #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion SmoothScroll/SmoothScroll.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
<Version>15.5.31</Version>
</PackageReference>
<PackageReference Include="Microsoft.VSSDK.BuildTools">
<Version>16.10.10</Version>
<Version>17.0.5232</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion SmoothScroll/VSPackage.resx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<value>Smooth Scroll Extension</value>
</data>
<data name="112" xml:space="preserve">
<value>Smooth Scroll Extension for Visual Studio 2013, 2015 and 2017</value>
<value>Smooth Scroll Extension for Visual Studio 2013, 2015, 2017, 2019, and 2022</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="400" type="System.Resources.ResXFileRef, System.Windows.Forms">
Expand Down
14 changes: 9 additions & 5 deletions SmoothScroll/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="C3E3372B-022D-4E19-BD83-EEDD6FA01E5C" Version="3.2.1" Language="en-US" Publisher="Lkytal" />
<Identity Id="C3E3372B-022D-4E19-BD83-EEDD6FA01E5C" Version="3.2.2" Language="en-US" Publisher="Lkytal" />
<DisplayName>Smooth Scroll</DisplayName>
<Description xml:space="preserve">Smooth Scroll for VS2017 and VS2019</Description>
<Description xml:space="preserve">Smooth Scroll for VS2017, VS2019, and VS2022</Description>
<MoreInfo>https://github.com/lkytal/SmoothScroll</MoreInfo>
<License>Resources\LICENSE.txt</License>
<Icon>Resources\icon.png</Icon>
<Tags>mouse, scroll, scrolling, smooth, Smooth Scroll</Tags>
</Metadata>
<Installation InstalledByMsi="false">
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Pro" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Community" />
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Pro">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Community">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
</Installation>
<Assets>
<Asset Type="Microsoft.VisualStudio.MefComponent" Path="|%CurrentProject%|" d:Source="Project" d:ProjectName="%CurrentProject%" d:VsixSubPath="SmoothScroll.dll" />
</Assets>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0, 17.0)" DisplayName="Visual Studio 核心编辑器" />
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0, 18.0)" DisplayName="Visual Studio 核心编辑器" />
</Prerequisites>
</PackageManifest>