Extend VSIX InstallationTarget range to support Visual Studio 2026#2
Draft
Extend VSIX InstallationTarget range to support Visual Studio 2026#2
Conversation
…0,20.0]) Co-authored-by: romanjetich <38476303+romanjetich@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update VersionUp.V2 extension for Visual Studio 2026 support
Extend VSIX InstallationTarget range to support Visual Studio 2026
Mar 18, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The extension's installation range
[17.0,19.0]excludes Visual Studio 2026 (version 18.x). Widening the upper bound to20.0covers VS 2026 while retaining full VS 2022 support.Change
source.extension.vsixmanifestNo changes to
.csproj, NuGet packages, or C# code are required — the existing .NET 4.8 target, VS SDK packages, andAsyncPackage-based implementation are forward-compatible with VS 2026.Original prompt
Problem
The VersionUp.V2 extension is currently limited to Visual Studio versions [17.0, 19.0), which may not be compatible with Visual Studio 2026 (version 18.0+). The extension needs to be updated to support newer Visual Studio versions including VS 2026.
Required Changes
1. VSIX Manifest Update
File:
VersionUp.V2/source.extension.vsixmanifest<InstallationTarget Version="[17.0,19.0]"<InstallationTarget Version="[17.0,20.0]"to support VS 20262. Project File Updates
File:
VersionUp.V2/VersionUp.V2.csproj3. NuGet Package Verification
Verify that the following packages support VS 2026:
4. Code Review
File:
VersionUp.V2/ContextMenu.csExpected Outcome
After these changes, VersionUp.V2 should be installable and functional on:
Testing Recommendations
The following is the prior conversation context from the user's chat exploration (may be truncated):
User: Schaue meine Repository VersionUp.V2 und analysiere den Code für die Verwendung unter VS 2026
Assistant: Ich werde dir die Repository VersionUp.V2 analysieren und den Code untersuchen.
Assistant: Lass mich mehr Details über die Dateien im Repository abrufen:
Assistant: ## 📊 Analyse: VersionUp.V2 Repository für Visual Studio 2026
Ich habe dein Repository analysiert. Hier ist eine detaillierte Übersicht:
🔍 Repository-Übersicht
⚙️ Technische Spezifikationen
Projekt-Konfiguration (.csproj)
VS 2026 Kompatibilität - WICHTIGE ERKENNTNISSE
Die
source.extension.vsixmanifestzeigt:📋 Projektstruktur
Hauptdateien:
ContextMenu.cs- Command Handler für Kontextmenü (11 KB)ContextMenuPackage.cs- VS Package ImplementierungContextMenuPackage.vsct- Menu & Command Table DefinitionGeneralSettings.Designer.cs- EinstellungenVSPackage.resx- RessourcenAssets:
VersionUpV2_256x256.ico,VersionUpV2_64x64.pngindex.html,stylesheet.css🎯 Was macht diese Extension?
Laut Beschreibung:
Funktionsweise (basierend auf ContextMenu.cs):
4 Versionstypen-Befehle:
Nutzt EnvDTE (Visual Studio Object Model)
Async/Await Pattern für VS Shell-Integration
Singleton-Pattern für Instanz-Management
🔴 Empfehlungen für VS 2026-Kompatibilität
Notwendige Änderungen:
VSIX Manifest aktualisieren:
NuGet Packages überprüfen:
.NET Framework testen:
SDK Update prüfen:
✅ Was gut aussieht
Möchtest du, dass ich einen Pull Request mit den Aktualisierungen für VS 2026-Kompatibilität er...
This pull request was created from Copilot chat.
🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.