Skip to content

Commit

Permalink
Version bump and markdown updates
Browse files Browse the repository at this point in the history
  • Loading branch information
nanangp committed Dec 1, 2021
1 parent df65e8c commit ed60380
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 21 deletions.
23 changes: 8 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,15 @@ It was born out of frustration on having to do "Open containing folder" to
perform any file operation, then eventually closing the explorer window
when finished. Well, no more of that!

Plus, you're got the whole code window to right click on, instead of having
to aim for the small file tab > right click > open folder > look for the file >
right click again > etc..
You can trigger the menu item from:
- Solution Explorer (supports multiple selection)
- Any editor window
- Document tabs

## Notes:
- Since the VS shell is 32-bit, the context menu you see would be the
32-bit context menu, not the 64-bit one.
- Because we are still supporting older VS shells (VS2012/11.0) we
cannot take advantage of the new async loading of extension packages.
Shouldn't be an issue, as the loading doesn't actually do much work.
## Notes
- You will see the 64-bit context menu on VS2022,
but only the 32-bit menu on earlier VS versions.

## What's New

See full [changelog](src/VsShellContext/Changelog.md).
- **v2.0** This is it. Built for the year 2020. Supports VS2012-2019.
- **v1.3** Hopefully fixes random crashing.
- **v1.2** Supports right-clicking projects in Solution Explorer.
- **v1.1** Integration with files in Solution Explorer.
Also works on multiple selections - provided the files are in the same physical folder.
See [changelog](src/VsShellContext/Changelog.md).
5 changes: 3 additions & 2 deletions src/VsShellContext.sln
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30310.162
# Visual Studio Version 17
VisualStudioVersion = 17.1.31911.260
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VsShellContext", "VSShellContext\VsShellContext.csproj", "{500B0BD9-CC48-4350-AD7F-5E81B0EEDB0D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{2B7028A3-0176-4B57-A06F-BD5E42BC6E7B}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
..\README.md = ..\README.md
EndProjectSection
EndProject
Global
Expand Down
15 changes: 15 additions & 0 deletions src/VsShellContext/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## Version 2.2

New:
* Supports VS2017 to VS2022.
* Dropped support for VS2015/14.0 and below. Sorry :(

Notes:
* You will see the 64-bit context menu on VS2022,
but only the 32-bit menu on earlier VS versions.

## Version 2.1

New:
* Extra places where the menu item is shown: Tabs, Folders, Solution items, JSON editors.

## Version 2.0

New:
Expand Down
7 changes: 3 additions & 4 deletions src/VsShellContext/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
-->
<Identity
Id="VsShellContextMenu.985f5dc4-11c5-497e-bd9d-a84a2ddc7816"
Version="2.1"
Version="2.2"
Language="en-US"
Publisher="Nanang Prasetyo"
/>
Expand All @@ -29,14 +29,13 @@
15.0 Visual Studio 2017
16.0 Visual Studio 2019
17.0 Visual Studio 2022
-->
-->
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,17.0)" />
<InstallationTarget Version="[17.0,18.0)" Id="Microsoft.VisualStudio.Community">
<InstallationTarget Version="[17.0,)" Id="Microsoft.VisualStudio.Community">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
</Dependencies>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[11.0,)" DisplayName="Visual Studio core editor" />
Expand Down

0 comments on commit ed60380

Please sign in to comment.