-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VS2019中微软已将菜单合并入标题栏, 按Alt显示标题栏功能失效, 遂添加快捷键Ctrl+1, Ctrl+1(参考https://bl…
- Loading branch information
Showing
6 changed files
with
66 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/packages | ||
obj/ | ||
Debug/ | ||
*proj.user | ||
/.vs/ | ||
Release/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Install-Package Microsoft.VisualStudio.CoreUtility -Version 15.0.26201 | ||
Install-Package Microsoft.VisualStudio.Imaging -Version 15.0.26201 | ||
Install-Package Microsoft.VisualStudio.OLE.Interop -Version 7.10.6070 | ||
Install-Package Microsoft.VisualStudio.Shell.15.0 -Version 15.0.26201 | ||
Install-Package Microsoft.VisualStudio.Shell.Framework -Version 15.0.26201 | ||
Install-Package Microsoft.VisualStudio.Shell.Interop -Version 7.10.6071 | ||
Install-Package Microsoft.VisualStudio.Shell.Interop.10.0 -Version 10.0.30319 | ||
Install-Package Microsoft.VisualStudio.Shell.Interop.11.0 -Version 11.0.61030 | ||
Install-Package Microsoft.VisualStudio.Shell.Interop.12.0 -Version 12.0.30110 | ||
Install-Package Microsoft.VisualStudio.Shell.Interop.8.0 -Version 8.0.50727 | ||
Install-Package Microsoft.VisualStudio.Shell.Interop.9.0 -Version 9.0.30729 | ||
Install-Package Microsoft.VisualStudio.TextManager.Interop -Version 7.10.6070 | ||
Install-Package Microsoft.VisualStudio.TextManager.Interop.8.0 -Version 8.0.50727 | ||
Install-Package Microsoft.VisualStudio.Threading -Version 15.0.240 | ||
Install-Package Microsoft.VisualStudio.Utilities -Version 15.0.26201 | ||
Install-Package Microsoft.VisualStudio.Validation -Version 15.0.82 | ||
Install-Package Microsoft.VSSDK.BuildTools -Version 15.0.26201 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<?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="0150ddd7-afc7-4cf5-a849-ae9b77ae2f9b" Version="1.2.1" Language="en-US" Publisher="hlizard" /> | ||
<DisplayName>Hide Title Bar</DisplayName> | ||
<Description xml:space="preserve">Automatically hides the Title Bar of Visual Studio main window after opening a solution.</Description> | ||
<Icon>Icon.VS2017.png</Icon> | ||
<PreviewImage>Preview.VS2017.png</PreviewImage> | ||
<Tags>hide, Title Bar, visual studio title bar, title bar size, title bar height</Tags> | ||
</Metadata> | ||
<Installation> | ||
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,)" /> | ||
</Installation> | ||
<Dependencies> | ||
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.6,)" /> | ||
</Dependencies> | ||
<Prerequisites> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,16.0)" DisplayName="Visual Studio core editor" /> | ||
</Prerequisites> | ||
<Metadata> | ||
<Identity Id="0150ddd7-afc7-4cf5-a849-ae9b77ae2f9b" Version="1.3.0" Language="en-US" Publisher="hlizard" /> | ||
<DisplayName>Hide Title Bar</DisplayName> | ||
<Description xml:space="preserve">Automatically hides the Title Bar of Visual Studio main window after opening a solution.</Description> | ||
<Icon>Icon.VS2017.png</Icon> | ||
<PreviewImage>Preview.VS2017.png</PreviewImage> | ||
<Tags>hide, Title Bar, visual studio title bar, title bar size, title bar height</Tags> | ||
</Metadata> | ||
<Installation> | ||
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,)" /> | ||
</Installation> | ||
<Dependencies> | ||
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.6,)" /> | ||
</Dependencies> | ||
<Prerequisites> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,)" DisplayName="Visual Studio core editor" /> | ||
</Prerequisites> | ||
</PackageManifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Microsoft.VisualStudio.CoreUtility" version="15.0.26201" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Imaging" version="15.0.26201" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.OLE.Interop" version="7.10.6070" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Shell.15.0" version="15.0.26201" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Shell.Framework" version="15.0.26201" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Shell.Interop" version="7.10.6071" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Shell.Interop.10.0" version="10.0.30319" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Shell.Interop.11.0" version="11.0.61030" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Shell.Interop.12.0" version="12.0.30110" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Shell.Interop.8.0" version="8.0.50727" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Shell.Interop.9.0" version="9.0.30729" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.TextManager.Interop" version="7.10.6070" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.TextManager.Interop.8.0" version="8.0.50727" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Threading" version="15.0.240" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Utilities" version="15.0.26201" targetFramework="net46" /> | ||
<package id="Microsoft.VisualStudio.Validation" version="15.0.82" targetFramework="net46" /> | ||
<package id="Microsoft.VSSDK.BuildTools" version="15.0.26201" targetFramework="net46" developmentDependency="true" /> | ||
</packages> |