Upgrade to .NET 10 and resolve security vulnerabilities - #31
Merged
StevenTCramer merged 7 commits intoOct 21, 2025
Merged
Conversation
- Update Directory.Build.props to target net10.0 - Remove redundant properties from sample web project to inherit from Directory.Build.props 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Override vulnerable transitive dependencies from IppDotNetSdkForQuickBooksApiV3: - System.Drawing.Common 4.7.2 (fixes CVE-2021-24112 - critical RCE) - System.Security.Cryptography.Xml 4.7.1 (fixes information disclosure) The QuickBooks SDK pulls in outdated versions (4.6.0 and 4.5.0 respectively). Explicit package references with centralized version management resolve the vulnerabilities. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Adds dotnet-outdated 4.6.8 to help identify and update outdated NuGet packages. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Use string interpolation for the section name in both parts of the error message for consistency and maintainability. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Update GitHub Actions workflow to use dotnet-version 10.0.x to match the upgraded target framework. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Update GitHub Actions release workflow to use dotnet-version 10.0.x to match the upgraded target framework. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Rename sync-configurable-files.yml to .disabled to prevent automatic workflow runs while maintaining the file for reference. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
Security Fixes
The QuickBooks SDK (
IppDotNetSdkForQuickBooksApiV3) has transitive dependencies with known vulnerabilities:These are explicitly overridden in
Directory.Packages.propsand referenced in the main project to ensure the secure versions are used.Package Updates
Test Plan
dotnet build)🤖 Generated with Claude Code