Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds support for Visual Studio 2026 to the MiKo-Analyzers project by creating new project variants and updating package dependencies to accommodate the next major version of Visual Studio.
Key Changes:
- Created new VS2026-specific project files (MiKo.Analyzer.2026, MiKo.Analyzer.CodeFixes.2026, MiKo.Analyzer.Package.2026, MiKo.Analyzer.Vsix2026)
- Updated package references to Roslyn 5.0 preview and .NET 10.0
- Extended conditional compilation directives throughout shared code to include VS2026 support
Reviewed Changes
Copilot reviewed 38 out of 38 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| appveyor.yml | Updated CI build image from VS2022 to VS2026 |
| README.md | Updated documentation to include VS2026 support |
| MiKo.Analyzer.sln | Added new VS2026 projects to solution structure |
| MiKo.Analyzer.Vsix2026/* | New VSIX extension project for VS2026 |
| MiKo.Analyzer.Package.2026/* | New NuGet package project for VS2026 |
| MiKo.Analyzer.Codefixes.2026/* | New code fixes project for VS2026 |
| MiKo.Analyzer.2026/* | New analyzer project for VS2026 |
| MiKo.Analyzer.Tests/MiKo.Analyzer.Tests.csproj | Updated test framework to .NET 10.0 |
| MiKo.Analyzer.Shared/* | Extended conditional compilation to support both VS2022 and VS2026 |
| MiKo.Analyzer.2022/* | Updated package version constraints to use version ranges |
| BenchmarkConsole/BenchmarkConsole.csproj | Updated Roslyn package to 5.0 preview |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
(due to added support for VS2026)
…Sharp.Workspaces' to v5.0.0
the 'shared' project get analyzed, so we avoid duplicates here (see https://learn.microsoft.com/de-de/visualstudio/code-quality/disable-code-analysis?view=visualstudio)
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.
Add support for Visual Studio 2026
Switch test project to .NET 10
(resolves #1515)