Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This pull request migrates the solution from the traditional .sln format to the modern .slnx (XML-based solution) format and updates multiple NuGet package dependencies to their latest versions.
Key changes:
- Replace WinQuickLook.sln with WinQuickLook.slnx for modern XML-based solution format
- Update application dependencies including Microsoft.Extensions.DependencyInjection (9.0.4 → 9.0.8), Markdig (0.41.1 → 0.41.3), and Microsoft.Web.WebView2 (1.0.3179.45 → 1.0.3405.78)
- Upgrade test framework dependencies with major version updates for xunit packages (v2 → v3) and Microsoft.NET.Test.Sdk (17.13.0 → 17.14.1)
Reviewed Changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| WinQuickLook.slnx | New XML-based solution file replacing the traditional .sln format |
| WinQuickLook.sln | Removal of the legacy solution file |
| WinQuickLook.Core/WinQuickLook.Core.csproj | Updated Markdig and Microsoft.Web.WebView2 package versions |
| WinQuickLook.Core/packages.lock.json | Updated lockfile reflecting new package versions for Core project |
| WinQuickLook.Core.Tests/WinQuickLook.Core.Tests.csproj | Major updates to test framework packages (xunit v2 → v3, test SDK updates) |
| WinQuickLook.Core.Tests/packages.lock.json | Updated lockfile with new test dependencies and transitive dependencies |
| WinQuickLook.App/WinQuickLook.App.csproj | Updated Microsoft.Extensions.DependencyInjection package version |
| WinQuickLook.App/packages.lock.json | Updated lockfile reflecting dependency injection package update |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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.
This pull request updates several third-party dependencies across the solution to their latest versions, focusing on both application and test projects. The changes aim to keep the codebase current with security patches and new features, and to ensure compatibility with the latest tooling.
Dependency updates:
Application dependencies:
Microsoft.Extensions.DependencyInjectionfrom 9.0.4 to 9.0.8 inWinQuickLook.Appand updated its lockfile accordingly. [1] [2]Markdigfrom 0.41.1 to 0.41.3 andMicrosoft.Web.WebView2from 1.0.3179.45 to 1.0.3405.78 in bothWinQuickLook.CoreandWinQuickLook.App, including all relevant lockfiles. [1] [2] [3] [4]Test dependencies:
WinQuickLook.Core.Tests, includingMicrosoft.NET.Test.Sdk(17.13.0 → 17.14.1),xunit.runner.visualstudio(3.0.2 → 3.1.4),Xunit.StaFact(2.1.7 → 3.0.13), andxunit.v3(2.0.1 → 3.0.1), with all transitive dependencies updated in the lockfile. [1] [2] [3] [4] [5] [6]Other changes:
WinQuickLook.slnwas removed, possibly to be replaced or regenerated.