Custom Document Well拡張機能 は、Visual Studio 2017でのみ使用できます。VisualStudio 2019にインストールする方法はありますか?具体的には、垂直タブ機能のみに関心があります。
この質問の執筆時点では、Visual Studio 19の現在のバージョンは16.0.0であり、Custom Document Well拡張機能の現在のバージョンは15.06です。
垂直タブはプレビュー対象外であり、 現在、正式にはVisual Studio 2019 v16.4の一部です !
新しい「垂直ドキュメントタブ」機能は Visual Studio 2019バージョン16.4プレビュー2の一部 です。 専用のブログ投稿 もあります。
CustomDocWell.vsix
CustomDocWell.vsix.Zip
に変更し、内容を抽出しますextension.vsixmanifest
( 非ローページ )InstallationTarget
バージョンの上限が削除されたことです。extension.vsixmanifest
を回避策ファイルに置き換えますmanifest.json
( 非ローページ )sha256
のextension.vsixmanifest
が再計算されたことです。manifest.json
を回避策ファイルに置き換えますCustomDocWell.Zip
に圧縮します。extension.vsixmanifest
とmanifest.json
、およびその他のレベルにあることを確認してくださいファイルとフォルダ。 Zipファイルのルートは、CustomDocWell
という名前のフォルダであってはなりません。CustomDocWell.vsix
に変更エラーが発生しない場合でも、Visual Studio 2019を開いたときに警告が表示されます。
拡張機能は引き続き機能します。 詳細リンク で詳細を説明します。
設定はTools> Options> Productivity Power Tools> Custom Document Wellにあります。
エラーが発生した場合、sha256
のextension.vsixmanifest
が正しくない可能性があります。自分で計算してみて(PowerShellにはGet-FileHash
があります)、manifest.json
に入れてみてください。
この回避策をVS 16.1で機能させるには、警告バナーの[同期オートロードを許可]をクリックして、VSを再起動するだけです。機能が組み込まれるまでは、非推奨の同期APIを使用できます。
バナーを非表示にしている場合は、このオプションをチェックしてください:オプション/環境/拡張機能/拡張機能の同期オートロードを許可
Andrew Keetoの回答 に加えて:ステップ4の後、セクションAddのextension.vsixmanifestで:
<InstallationTarget Version="[15.0,)" Id="Microsoft.VisualStudio.Pro" />
<InstallationTarget Version="[15.0,)" Id="Microsoft.VisualStudio.Enterprise" />
または、最大バージョンを更新します。
<Installation InstalledByMsi="false">
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Community" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Pro" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Enterprise" />
</Installation>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,17.0)" DisplayName="Visual Studio core editor" />
</Prerequisites>
manifest.jsonのSHA265を で再計算しましたhttps://emn178.github.io/online-tools /sha256_checksum.html そして、extension.vsixmanifestのsha265コードに置き換えます
この回答は@ Sergey-Vlasovのコメントのコピーです。彼のウェブサイトにアクセスし、指示に従ってください。
私のサイトからこれらの変更を加えたVS 2019用のすぐに使用できるCustom Document Wellインストーラーをダウンロードできます: https://tabsstudio.com/documentation/installing-custom-document-well-for-visual-studio-2019 .html –セルゲイブラソフ7月27日13:28