chore(deps): update dependency microsoft.net.test.sdk to 18.0.1#3303
chore(deps): update dependency microsoft.net.test.sdk to 18.0.1#3303renovate-bot wants to merge 1 commit intoGoogleCloudPlatform:mainfrom
Conversation
Summary of ChangesHello @renovate-bot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request automates the update of the Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates the Microsoft.NET.Test.Sdk dependency from 18.0.0 to 18.0.1. This is a minor patch update that includes a fix for a code coverage issue. The version bump has been applied consistently across all relevant test projects. The change is straightforward and correct. However, the large number of files modified highlights an opportunity to improve maintainability, for which I have left a suggestion.
| <ItemGroup> | ||
| <PackageReference Include="JUnitTestLogger" Version="1.1.0" /> | ||
| <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" /> | ||
| <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" /> |
There was a problem hiding this comment.
This PR modifies a large number of project files to update a single dependency version. To improve maintainability and simplify future updates, consider centralizing common package versions in a Directory.Build.props file at the repository root.
For example, you could create a Directory.Build.props file with:
<Project>
<PropertyGroup>
<MicrosoftNETTestSdkVersion>18.0.1</MicrosoftNETTestSdkVersion>
<!-- Other common versions -->
</PropertyGroup>
</Project>And then reference this property in your .csproj files:
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkVersion)" />This would allow you to update the version in a single place for all projects.
106bb71 to
3c47426
Compare
3c47426 to
1477090
Compare
This PR contains the following updates:
18.0.0→18.0.1Release Notes
microsoft/vstest (Microsoft.NET.Test.Sdk)
v18.0.1What's Changed
Fixing an issue with loading covrun64.dll on systems that have .NET 10 SDK installed: https://learn.microsoft.com/en-us/dotnet/core/compatibility/sdk/10.0/code-coverage-dynamic-native-instrumentation
Internal changes
Full Changelog: microsoft/vstest@v18.0.0...v18.0.1
Configuration
📅 Schedule: Branch creation - "before 8am" in timezone Europe/London, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.