Skip to content

Commit

Permalink
VS 2022 GA release.
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-visual-studio committed Jul 2, 2022
1 parent 68ae9fd commit 521dee3
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 14 deletions.
13 changes: 1 addition & 12 deletions .azure/vsix-readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,4 @@ Major features can be found under Tools|DPack Rx and Edit menus and include:

### Compatibility

All features support C#, VB and C++ based projects.

### Donate

If you wish to express your appreciation
for the time and resources the authors have expended developing and supporting
the original DPack over the years, we do accept and appreciate donations.
You can contribute via PayPal donate button below.

Thank you for your support!

[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=DXDC8CEJZRQLE&source=url)
All features support C#, VB and C++ based projects.
1 change: 1 addition & 0 deletions DPackRx/DPackRx.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
<Compile Include="Features\Bookmarks\IBookmarksSimpleTagger.cs" />
<Compile Include="Features\Bookmarks\BookmarksSimpleTagger.cs" />
<Compile Include="Features\Bookmarks\IBookmarkCallbackClient.cs" />
<Compile Include="Features\Miscellaneous\MouseWheelZoomListener.cs" />
<Compile Include="Features\SupportOptions\SupportOptionsFirstTimeUse.cs" />
<Compile Include="Features\SurroundWith\SurroundWithFeature.cs" />
<Compile Include="Helpers\KeyboardHelper.cs" />
Expand Down
2 changes: 1 addition & 1 deletion DPackRx/Features/Bookmarks/BookmarksTaggerProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class BookmarksTaggerProvider : ITaggerProvider
internal ISharedServiceProvider _serviceProvider = null;
#pragma warning restore CS0414

#region IViewTaggerProvider Members
#region ITaggerProvider Members

public ITagger<T> CreateTagger<T>(ITextBuffer buffer) where T : ITag
{
Expand Down
29 changes: 29 additions & 0 deletions DPackRx/Features/Miscellaneous/MouseWheelZoomListener.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
using System.ComponentModel.Composition;

using DPackRx.Services;

using Microsoft.VisualStudio.Text.Editor;
using Microsoft.VisualStudio.Utilities;

namespace DPackRx.Features.Miscellaneous
{
[Export(typeof (IWpfTextViewCreationListener))]
[ContentType("text")]
[TextViewRole(PredefinedTextViewRoles.Zoomable)]
internal class MouseWheelZoomListener : IWpfTextViewCreationListener
{
#pragma warning disable CS0414
[Import]
internal ISharedServiceProvider _serviceProvider = null;
#pragma warning restore CS0414

#region IWpfTextViewCreationListener Members

public void TextViewCreated(IWpfTextView textView)
{
textView.Options.SetOptionValue<bool>(DefaultWpfViewOptions.EnableMouseWheelZoomId, false);
}

#endregion
}
}
2 changes: 1 addition & 1 deletion DPackRx/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?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="3D22E261-32E5-46CE-A4B0-B884FA49A9A2.2022" Version="4.5.0.8" Language="en-US" Publisher="Sergey M" />
<Identity Id="3D22E261-32E5-46CE-A4B0-B884FA49A9A2.2022" Version="4.5.1" Language="en-US" Publisher="Sergey M" />
<DisplayName>DPack Rx 2022</DisplayName>
<Description xml:space="preserve">FREE tools collection designed to greatly increase developer's productivity, automate repetitive processes and expand upon some of Microsoft Visual Studio features.</Description>
<MoreInfo>https://github.com/sergey-visual-studio/dpack</MoreInfo>
Expand Down

0 comments on commit 521dee3

Please sign in to comment.